我正在寻找使用MVC创建下拉列表编辑器模板的最佳方法。似乎有各种各样的方法,但是我找不到最好的方法,每个人的做法似乎都不一样。我也将MVC3与Razor一起使用,因此首选与之配合使用的方法。
最佳答案
有很多方法,说最好的方法是主观的,可能在您的情况下不起作用,而您忘记了在问题中描述的方式。这是我的方法:
模型:
public class MyViewModel
{
public string SelectedItem { get; set; }
public IEnumerable<Item> Items { get; set; }
}
public class Item
{
public string Value { get; set; }
public string Text { get; set; }
}
控制器:
public class HomeController : Controller
{
public ActionResult Index()
{
var model = new MyViewModel
{
// TODO: Fetch this from a repository
Items = new[]
{
new Item { Value = "1", Text = "item 1" },
new Item { Value = "2", Text = "item 2" },
new Item { Value = "3", Text = "item 3" },
}
};
return View(model);
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
if (!ModelState.IsValid)
{
// redisplay the view to fix validation errors
return View(model);
}
// TODO: The model is valid here =>
// perform some action using the model.SelectedItem
// and redirect to a success page informing the user
// that everything went fine
return RedirectToAction("Success");
}
}
查看(
~/Views/Home/Index.cshtml
):@model MyApp.Models.MyViewModel
@{ Html.BeginForm(); }
@Html.EditorForModel()
<input type="submit" value="OK" />
@{ Html.EndForm(); }
编辑器模板(
~/Views/Home/EditorTemplates/MyViewModel.cshtml
):@model MyApp.Models.MyViewModel
@Html.DropDownListFor(x => x.SelectedItem,
new SelectList(Model.Items, "Value", "Text"))
关于asp.net-mvc - ASP.NET MVC DropDown编辑器模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4014428/