如何使用另一个下拉列表过滤下拉列表的选项

时间:2012-04-24 19:12:17

标签: asp.net-mvc asp.net-mvc-3 razor

我是ASP.NET新手,我正在使用ASP.Net的MVC 3框架。我试图使用另一个下拉列表来过滤下拉列表的选项,我无法做到这一点。我首先尝试通过填充主要类别和子类别列表并将它们加载到页面来完成此操作。然后将每个子类别的选项的类属性设置为其父类别。最后,从第一个下拉列表中单击父类别只显示子子类别并隐藏其余子类(这是我之前在java中执行的操作)。但是在ASP.Net MVC中,html代码是如此不同,我甚至无法为下拉列表的每个选项设置类属性,它通常为所有下拉列表设置类而不是每个选项。这就是我现在所拥有的 这是我的观点

<p>
@Html.LabelFor(model => model.CategoryId)
@Html.DropDownListFor(x => x.CategoryId , new SelectList(Model.Categories, "CategoryId", "CategoryName"), new { onchange= "this.form.submit();"})
</p>

<p>
@Html.LabelFor(model => model.SubCategories)
@Html.DropDownListFor(x => x.SubCategories, new SelectList(Model.SubCategories, "SubCategoryId", "SubCategoryName"), new { @class = "Category1.categoryname" })
 </p>

这是我的模特

public class TestQuestionsViewModel
{
    public string CategoryId { get; set; }
    public IEnumerable<Category> Categories { get; set; }

    public string SubCategoryId { get; set; }
    public IEnumerable<SubCategory> SubCategories { get; set; }
 }

这是我的控制器类方法

    public ActionResult Create()
    {

        var model = new TestQuestionsViewModel
        {

            Categories = resetDB.Categories.OrderBy(c => c.categoryid),
            SubCategories = resetDB.SubCategories.OrderBy(sc => sc.subcategoryid)
         };
     return View(model);
    }

我的问题是如何为每个选项设置类属性。或者,如果有人建议如何以不同的方式做到这一点,我愿意接受任何解决方案。谢谢。

2 个答案:

答案 0 :(得分:27)

最初加载页面时将所有子项加载到页面对我来说似乎不是一个好主意。如果您有100个类别并且每个类别有200个子类别项目怎么办?你真的想加载20000件物品吗?

我认为你应该采用渐进的加载方式。使用值提供主类别下拉列表,让用户从中选择一个项目。调用服务器并获取子类别属于所选类别,并将该数据加载到第二个下拉列表。您可以使用jQuery ajax来执行此操作,以便用户在选择一个下拉列表时不会感觉到完整的页面重新加载。这就是我将如何做到的。

创建具有类别属性

的ViewModel
public class ProductViewModel
{
    public int ProductId { set;get;}
    public IEnumerable<SelectListItem> MainCategory { get; set; }
    public string SelectedMainCatId { get; set; }
    public IEnumerable<SelectListItem> SubCategory { get; set; }
    public string SelectedSubCatId { get; set; }
}

让你的GET Action方法返回这个强类型视图,其中包含MainCategory的内容

public ActionResult Edit()
{
   var objProduct = new ProductViewModel();             
   objProduct.MainCategory = new[]
   {
      new SelectListItem { Value = "1", Text = "Perfume" },
      new SelectListItem { Value = "2", Text = "Shoe" },
      new SelectListItem { Value = "3", Text = "Shirt" }
   };
   objProduct.SubCategory = new[] { new SelectListItem { Value = "", Text = "" } };
   return View(objProduct);
}

并在您的强类型视图中

@model MvcApplication1.Models.ProductViewModel
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
@using (Html.BeginForm())
{    
    @Html.DropDownListFor(x => x.SelectedMainCatId, new SelectList(Model.MainCategory,"Value","Text"), "Select Main..")
    @Html.DropDownListFor(x => x.SelectedSubCatId, new SelectList(Model.SubCategory, "Value", "Text"), "Select Sub..")    
    <button type="submit">Save</button>
}
<script type="text/javascript">
    $(function () {
        $("#SelectedMainCatId").change(function () {
            var val = $(this).val();
            var subItems="";
            $.getJSON("@Url.Action("GetSub","Product")", {id:val} ,function (data) {
              $.each(data,function(index,item){
                subItems+="<option value='"+item.Value+"'>"+item.Text+"</option>"
              });
              $("#SelectedSubCatId").html(subItems)
            });
        });
    });
</script>

将GetSub操作方法添加到控制器以返回所选类别的子类别。我们将以Json

返回响应
 public ActionResult GetSub(int id)
 {
    List<SelectListItem> items = new List<SelectListItem>();
    items.Add(new SelectListItem() { Text = "Sub Item 1", Value = "1" });
    items.Add(new SelectListItem() { Text = "Sub Item 2", Value = "8"});
    // you may replace the above code with data reading from database based on the id

    return Json(items, JsonRequestBehavior.AllowGet);
 }

现在,您的HTTPOST操作方法

中将显示所选值
    [HttpPost]
    public ActionResult Edit(ProductViewModel model)
    {
        // You have the selected values here in the model.
        //model.SelectedMainCatId has value!
    }

答案 1 :(得分:0)

您需要添加另一种方法来处理回发并过滤子类别选项。像这样:

[HttpPost]
public ActionResult Create(TestQuestionsViewModel model)
{
    model.SubCategories = resetDB.SubCategories
            .Where(sc => sc.categoryid == model.SubCategoryId)
            .OrderBy(sc => sc.subcategoryid);
    return View(model);    
}

修改

顺便说一句,如果你仍然需要将类名设置为另一个下拉列表,那么就不能这样做。最简单的方法是将“SelectedCategoryName”属性添加到模型中,并引用类似 {@class = ModelSelectedCategoryName}