Html.DropDownList用于混淆

本文关键字:用于 DropDownList Html | 更新日期: 2023-09-27 18:27:49

有人能帮我了解Html.DropDownListFor是如何工作的吗?我有一个型号如下

public class TestModel
{
    public IList<SelectListItem> ProductNames { get; set; }
    public string Product { get; set; }
}

对DropDownListFor的调用,看起来像

@Html.DropDownListFor(model => model.ProductNames,  Model.ProductNames, "Select a Product", new {@class="selectproductname" })

通过这种设置,我发现下拉列表填充正确,但在提交表单后,我似乎无法获得所选项目。此外,根据我所读到的对Html.DropDownListFor的调用,实际上应该看起来像

@Html.DropDownListFor(model => model.Product,  Model.ProductNames, "Select a Product", new {@class="selectproductname" })

事实上,代码的其他部分看起来也是这样,但当我这样做时,下拉列表不会被填充。我是不是遗漏了什么?

有几个旁注:1) 这个下拉列表的填充发生在从另一个下拉列表中选择一个值之后,所以我通过调用getJSON从数据库中获取数据来进行AJAX调用2) 该应用程序是MVC应用程序

如果有任何帮助,我将不胜感激。如果你需要任何其他信息来帮助回答这个问题,请告诉我

编辑:以下是的更多细节

这是控制器中用于检索下拉数据的操作方法

[AcceptVerbs(HttpVerbs.Get)]
    public JsonResult LoadProductsBySupplier(string parentId)
    {
        var ctgy = this._categoryService.GetAllCategoriesByParentCategoryId(Convert.ToInt32(parentId));
        List<int> ctgyIds = new List<int>();
        foreach (Category c in ctgy)
        {
            ctgyIds.Add(c.Id);
        }
        var prods = this._productService.SearchProducts(categoryIds: ctgyIds, storeId: _storeContext.CurrentStore.Id, orderBy: ProductSortingEnum.NameAsc);
        products = prods.Select(m => new SelectListItem()
        {
            Value = m.Id.ToString(),
            Text = m.Name.Substring(m.Name.IndexOf(' ') + 1)
        });
        var p = products.ToList();
        p.Insert(0, new SelectListItem() { Value = "0", Text = "Select A Product" });
        products = p.AsEnumerable();
        //model.ProductNames = products.ToList();

        return Json(products, JsonRequestBehavior.AllowGet);
    }

这是对控制器中操作的JQuery调用

$("#Supplier").change(function () {
        var pID = $(this).val();            
        $.getJSON("CoaLookup/LoadProductsBySupplier", { parentId: pID },
                function (data) {
                    var select = $("#ProductNames");
                    select.empty();
                    if (pID != "0") {
                        $.each(data, function (index, itemData) {
                            select.append($('<option/>', {
                                value: itemData.Value,
                                text: itemData.Text
                            }));
                        });
                    }
                });
    });

当我使用model=>model时,不会进入这个$.each循环。产品,即使数据在变量数据中返回

Html.DropDownList用于混淆

第二种用法是正确的,但是当您使用时

@Html.DropDownListFor(model => model.Product, .....

您正在生成一个具有属性id="Product"<select>,因此需要更改脚本以引用具有此ID 的元素

....
$.getJSON("CoaLookup/LoadProductsBySupplier", { parentId: pID }, function (data) {
  var select = $("#Product"); // change this selector
  select.empty();
  ....

编辑

作为一方,您不一定需要在控制器方法中创建SelectList,并且您的代码可以简化为

[AcceptVerbs(HttpVerbs.Get)]
public JsonResult LoadProductsBySupplier(int parentId)
{
  List<int> ctgyIds = _categoryService.GetAllCategoriesByParentCategoryId(parentId).Select(c => c.ID).ToList();
  var products= _productService.SearchProducts(categoryIds: ctgyIds, storeId: _storeContext.CurrentStore.Id, orderBy: ProductSortingEnum.NameAsc).AsEnumerable().Select(p => new
  {
    ID = p.ID,
    Text = p.Name.Substring(m.Name.IndexOf(' ') + 1)
  });
  return Json(products, JsonRequestBehavior.AllowGet);
}

和脚本

$("#Supplier").change(function () {
  var pID = $(this).val();
  var select = $("#Product").empty().append($('<option/>').text('Select A Product'));
  if (pID == '0') { return; } // this should really be testing for null or undefined but thats an issue with your first select          
  $.getJSON('@Url.Action("LoadProductsBySupplier", "CoaLookup")', { parentId: $(this).val() }, function (data) {
    $.each(data, function (index, item) {
      select.append($('<option/>').val(item.ID).text(item.Text);
    });
  });
});

还要注意,在脚本中$.getJSON之前的if子句-调用服务器然后决定忽略返回值

没有多大意义

要在编辑页面中获得所选值,请尝试使用:

@Html.DropDownList("name", new SelectList(ViewBag.Product, "Id","Name", item.Id))

在这个项目中。Id是选定的值,ViewBag.Product必须使用linq从产品中填充,例如在Controller中。