在ASP.Net MVC中使用DropDownList的最佳编程实践

在ASP.Net MVC中使用DropDownList的最佳编程实践,第1张

在ASP.Net MVC中使用DropDownList的最佳编程实践

您要使用选项1,主要是因为要尽可能使用 Strongly Type ,并在编译时修复错误

相反, ViewDataViewBag 是动态的,并且在运行时,编译无法捕获错误。

这是我在许多应用程序中使用的示例代码-

模型
public class SampleModel{    public string SelectedColorId { get; set; }    public IList<SelectListItem> AvailableColors { get; set; }    public SampleModel()    {        AvailableColors = new List<SelectListItem>();    }}
视图
@model DemoMvc.Models.SampleModel@using (Html.BeginForm("Index", "Home")){    @Html.DropDownListFor(m => m.SelectedColorId, Model.AvailableColors)    <input type="submit" value="Submit"/>}
控制者
public class HomeController : Controller{    public ActionResult Index()    {        var model = new SampleModel        { AvailableColors = GetColorListItems()        };        return View(model);    }    [HttpPost]    public ActionResult Index(SampleModel model)    {        if (ModelState.IsValid)        { var colorId = model.SelectedColorId; return View("Success");        }        // If we got this far, something failed, redisplay form        // ** importANT : Fill AvailableColors again; otherwise, DropDownList will be blank. **        model.AvailableColors = GetColorListItems();        return View(model);    }    private IList<SelectListItem> GetColorListItems()    {        // This could be from database.        return new List<SelectListItem>        { new SelectListItem {Text = "Orange", Value = "1"}, new SelectListItem {Text = "Red", Value = "2"}        };    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5567325.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存