我是mvc的新手。所以我用这种方式填充下拉列表
public ActionResult New()
{
var countryQuery = (from c in db.Customers
orderby c.Country ascending
select c.Country).Distinct();
List<SelectListItem> countryList = new List<SelectListItem>();
string defaultCountry = "USA";
foreach(var item in countryQuery)
{
countryList.Add(new SelectListItem() {
Text = item,
Value = item,
Selected=(item == defaultCountry ? true : false) });
}
ViewBag.Country = countryList;
ViewBag.Country = "UK";
return View();
}
@Html.DropDownList("Country", ViewBag.Countries as List<SelectListItem>)
我想知道如何从模型中填充下拉列表并设置默认值。任何示例代码都会有很大的帮助。感谢
答案 0 :(得分:5)
这不是一个很好的方法。
创建一个ViewModel,它将保存您想要在视图中呈现的所有内容。
public class MyViewModel{
public List<SelectListItem> CountryList {get; set}
public string Country {get; set}
public MyViewModel(){
CountryList = new List<SelectListItem>();
Country = "USA"; //default values go here
}
填写您需要的数据。
public ActionResult New()
{
var countryQuery = (from c in db.Customers
orderby c.Country ascending
select c.Country).Distinct();
MyViewModel myViewModel = new MyViewModel ();
foreach(var item in countryQuery)
{
myViewModel.CountryList.Add(new SelectListItem() {
Text = item,
Value = item
});
}
myViewModel.Country = "UK";
//Pass it to the view using the `ActionResult`
return ActionResult( myViewModel);
}
在视图中,声明此视图需要使用文件顶部的以下行使用MyViewModel类型的模型
@model namespace.MyViewModel
您可以随时使用该模型
@Html.DropDownList("Country", Model.CountryList, Model.Country)
答案 1 :(得分:3)
您无法使用Html.DropDownList
设置默认值,如果您想拥有默认值,则该属性本身应具有默认值。
private string country;
public string Country
{
get { return country ?? "UK"; }
set { country = value; }
}
然后,当下拉列表呈现时,只要&#34; UK&#34;实际上是其中一个选项的值,它将自动设置为该值。
答案 2 :(得分:0)
如果DropDownList
已在控制器中填写并通过ViewBag
发送到视图,您可以执行以下操作:
ViewBag.MyName = new SelectList(DbContextname.Tablename, "Field_ID", "Description",idtobepresented);