发布后如何填写下拉列表
Posted
技术标签:
【中文标题】发布后如何填写下拉列表【英文标题】:how to fill dropdownlistfor after post 【发布时间】:2018-02-28 03:47:09 【问题描述】:我有
<form>
@html.DropDownListFor(x => x.City, provinces, "--Select City--", new @class = "dropdownList" )
@Html.DropDownListFor(x => x.district, Enumerable.Empty<SelectListItem>(), "--Select district--")
<input type="submit" id="submitRegister" value="submit" />
</form>
发布后我出现模态状态错误,然后我错过了地区。错误发布后如何设置地区
【问题讨论】:
这似乎是级联下拉菜单(并且您没有显示任何与此相关的代码),但我建议您参考this answer 【参考方案1】:我理解并解决了这个问题。 我更新了控制器
返回视图(模型)然后我以这种方式重新填写列表。
@ if (Model != null)var _id = Convert.ToInt32(Model.City);var DistrictService = DependencyResolver.Current .GetService();var district= DistrictService.Search(x => x.ProvinceId == _id).ToList();List _district = new List();foreach (var item in District ) _district.Add(new SelectListItem Value = item.Id.ToString(), Text = item.Name);@Html.DropDownListFor(x => x.区,_district,新 @class= "dropdownList");else @Html.DropDownListFor(x => x.district, Enumerable.Empty(), "-- Select--", new @class= "dropdownList", disabled = true );
【讨论】:
以上是关于发布后如何填写下拉列表的主要内容,如果未能解决你的问题,请参考以下文章