ASP.NET MVC - 与下拉列表的模型绑定
是否可以拥有一个带有用于下拉列表的列表的视图模型,并且在发布表单时还可以从视图模型中获取下拉列表的选定值?
如果是这样,我该怎么做?
Is it possible to have a single view model with a list that is used for a dropdownlist and also get the selected value of the dropdownlist from the view model when I post a form?
If so, how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,一如既往,首先定义视图模型:
然后是控制器:
最后是强类型视图:
Sure, as always start by defining your view model:
then the controller:
and finally the strongly typed view: