当您有对象列表时,使用 Html.DropDownListFor 的最佳方法是什么?

发布于 2024-08-26 04:20:10 字数 187 浏览 5 评论 0原文

在我的视图模型中,如果有:

  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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幽梦紫曦~ 2024-09-02 04:20:10

视图模型中有什么,

要显示您想要使用的列表

<%= Html.DropDownList("DropDownName", new SelectList(yourListOfCar, "Id", "Name"))%>

,因此如果您想使用 DropDownListFor,您将使用如下所示,

<%= Html.DropDownList(model => model.IdCar, new SelectList(yourListOfCar, "Id", "UserName"))%>

其中 model 是您的视图模型

What's in your view model,

to display the list you want you would use

<%= Html.DropDownList("DropDownName", new SelectList(yourListOfCar, "Id", "Name"))%>

so if you want to use DropDownListFor, you would use is like this

<%= Html.DropDownList(model => model.IdCar, new SelectList(yourListOfCar, "Id", "UserName"))%>

where model is your view model

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文