当您有对象列表时,使用 Html.DropDownListFor 的最佳方法是什么?
在我的视图模型中,如果有:
List<Car>
其中汽车有 ID 和名称。我想使用
Html.DropDownListFor()
最好的方法来创建一个下拉框,因为我希望项目的值是 ID,显示的值是汽车的名称。
In my view model if have a:
List<Car>
where car has an Id and a name. I want to create a dropdown box using
Html.DropDownListFor()
what is the best way to hook this up as i want to have the value of the item be the Id and the display to be the Name of the Car.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视图模型中有什么,
要显示您想要使用的列表
,因此如果您想使用 DropDownListFor,您将使用如下所示,
其中 model 是您的视图模型
What's in your view model,
to display the list you want you would use
so if you want to use DropDownListFor, you would use is like this
where model is your view model