Asp.Net MVC 中下拉列表的选择范围有限?

发布于 2024-10-18 08:58:59 字数 312 浏览 0 评论 0原文

我想将 View 中的字段绑定到 ViewModel 中的属性。该对象是“程序”并具有属性“名称”和“级别”。因此,用户应该能够设置程序的名称以及他/她使用该程序的经验级别。

程序是Sql Server数据库中的一张表,通过实体框架访问。因此,将 ViewModel 中的 Level 属性绑定到文本框是很容易的:

@Html.TextBoxFor(model => model.Level)

但我想要一个具有有限数量级别(1-5)的下拉列表。那么我该如何做到这一点并且仍然将下拉列表绑定到 ViewModel 属性呢?

I want to bind a field in a View to a property in a ViewModel. The object is "Program" and has the properties "Name" and "Level". So the user should be able to set the name of a program and the level of experience he/she has with this program.

Program is a table in an Sql Server database, and is accessed through Entity Framework. So it would be easy enough to bind the Level property in the ViewModel to a textbox:

@Html.TextBoxFor(model => model.Level)

But I want a dropdownlist with a limited number of levels (1-5). So how do I do this and still have the dropdownlist bind to the ViewModel property?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萌面超妹 2024-10-25 08:58:59
@Html.DropDownListFor( model => model.Level, new SelectList(new [] {1, 2, 3, 4, 5}) );
@Html.DropDownListFor( model => model.Level, new SelectList(new [] {1, 2, 3, 4, 5}) );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文