gpt4 book ai didi

asp.net-mvc - 如何从模型设置 ASP.NET MVC DropDownList 的默认值

转载 作者:行者123 更新时间:2023-12-04 23:01:29 28 4
gpt4 key购买 nike

我是 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>)

我想知道如何从模型填充下拉列表并设置默认值。任何示例代码都会有很大帮助。谢谢

最佳答案

那么这不是一个很好的方法来做到这一点。

创建一个 ViewModel,它将保存您想要在 View 中呈现的所有内容。

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);
}

在 View 中,使用文件顶部的以下行声明此 View 需要类型为 MyViewModel 的模型
@model namespace.MyViewModel 

您可以随时随意使用模型
@Html.DropDownList("Country", Model.CountryList, Model.Country)

关于asp.net-mvc - 如何从模型设置 ASP.NET MVC DropDownList 的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22991387/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com