gpt4 book ai didi

c# - Html.DropDownList 默认值 MVC 5

转载 作者:太空宇宙 更新时间:2023-11-03 13:16:23 27 4
gpt4 key购买 nike

我只是想在这个列表中添加一个默认值(“Create new Venue”),这可能比我做的更容易。我对方法重载感到困惑,特别是因为我正在使用的重载(由脚手架创建)是 DropDownList(string name, IEnumerable selectList, object htmlAttributes) 并且第二个参数为 null,但它有效。我认为这里有一些惯例。谁能阐明这一点和/或我如何向该列表添加默认值?

Controller :

ViewBag.VenueId = new SelectList(db.Venues, "Id", "Name", review.VenueId);
return View(review);
}

查看:

<div class="form-group">
@Html.LabelFor(model => model.VenueId, "VenueId", htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.DropDownList("VenueId", null, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.VenueId, "", new { @class = "text-danger" })
<div>Don't see what you're looking for? Fear not. Just type in the name and create your review; we'll fill in the rest!</div>
</div>
</div>

最佳答案

也许您可以分解您的 SelectList 并向其中插入一个项目?这是一个示例(尚未测试,因此不能 100% 确定它是否有效):

Controller

// Create item list from your predefined elements
List<SelectListItem> yourDropDownItems = new SelectList(db.Venues, "Id", "Name", review.VenueId).ToList();

// Create item to add to list
SelectListItem additionalItem = new SelectListItem { Text = "Create new Venue", Value = "0" }; // I'm just making it zero, in case you want to be able to identify it in your post later

// Specify index where you would like to add your item within the list
int ddIndex = yourDropDownItems.Count(); // Could be 0, or place at end of your list?

// Add item at specified location
yourDropDownItems.Insert(ddIndex, additionalItem);

// Send your list to the view
ViewBag.DropDownList = yourDropDownItems;

return View(review);

查看

@Html.LabelFor(model => model.VenueId, new { @class = "form-control" })
<div>
@Html.DropDownListFor(model => model.VenueId, ViewBag.DropDownList)
@Html.ValidationMessageFor(model => model.VenueId)
</div>
</div>

编辑:

您应该能够添加默认值的一种方法是在 .DropDownListFor 的最后一个参数中,如下所示:

@Html.DropDownListFor(model => model.VenueId, ViewBag.DropDownList, "Create new Venue")

关于c# - Html.DropDownList 默认值 MVC 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25943189/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com