在 MVC 中绑定下拉列表时出错 ASP.NET
本文关键字:出错 ASP NET 下拉列表 MVC 绑定 | 更新日期: 2023-09-27 18:33:30
我正在尝试使用一个提供经销商列表的 Web API,并尝试将其绑定到 mvc 中的DropdownList
中。但是,我遇到一个错误:
我其他信息:数据绑定:"System.String"不包含名为"DealerName"的属性。
正在使用的服务正在返回经销商详细信息列表,我必须将其显示在 mvc 中的 Web 网格中,并带有经销商名称和声明月份两个下拉列表作为搜索条件。因此,我创建了一个 ViewModel 来累积服务的结果,其中包含两个用于在下拉列表中绑定的附加属性。以下是代码:
Web 服务结果 - 此类的 IEnumerable 列表:
public class DealerReportResponse
{
public string DealerCode { get; set; }
public string DealerName { get; set; }
public string StatementReceivedOnDate { get; set; }
public int StatementReceivedOnDay { get; set; }
public string StatementReceivedOnMonth { get; set; }
}
我的视图模型是:
public class DealerReportViewModel
{
public List<string> DealerName { get; set; }
public List<string> DealerStatementMonth { get; set; }
public List<DealerReportResponse> DealerReportDetails { get; set; }
}
这是我将模型传递到视图的控制器:
public ActionResult Index()
{
try
{
DealerReportViewModel model = new DealerReportViewModel();
var serviceHost = //url;
var service = new JsonServiceClient(serviceHost);
var response = service.Get<IEnumerable<DealerReportResponse>>(new DealerReportRequest());
if (response != null)
{
model.DealerName = response.Select(x => x.DealerName).Distinct().ToList();
model.DealerStatementMonth = response.Select(x => x.StatementReceivedOnMonth).Distinct().ToList();
model.DealerReportDetails = response.ToList();
return View("DealerReportGrid", model);
}
else
{
//do something
}
}
catch (Exception ex)
{
//catch exception
}
}
在视图中,我尝试将模型绑定到下拉列表中,如下所示:
<!-- Search Box -->
@model DealerFinancials.UI.Models.DealerReport.DealerReportViewModel
<div id="searchBox">
@Html.DropDownListFor(m => m.DealerName,
new SelectList(Model.DealerName, "DealerName", "DealerName"),
"All Categories",
new { @class = "form-control", @placeholder = "Category" })
</div>
但是,我无法将经销商名称列表绑定到下拉列表。我不确定错误。如果我缺少与模型一起传递到视图的内容,请提供帮助。
您在生成 SelectList 时出错:您需要从 Model.DealerReportDetails
而不是从 Model.DealerName
生成它。所以而不是new SelectList(Model.DealerName, "DealerName", "DealerName")
使用 new SelectList(Model.DealerReportDetails , "DealerName", "DealerName")
@model DealerFinancials.UI.Models.DealerReport.DealerReportViewModel
<div id="searchBox">
@Html.DropDownListFor(m => m.DealerName,
new SelectList(Model.DealerReportDetails , "DealerName", "DealerName"),
"All Categories",
new { @class = "form-control", @placeholder = "Category" })
</div>