4

我的 ASP.NET MVC 4 应用程序有一个带有国家下拉菜单的联系表。对于该菜单,我使用 Html.DropDownListFor 辅助方法。但是,如果未选择国家/地区,则会出现异常:“没有具有键 'Country.Name' 的 'IEnumerable' 类型的 ViewData 项。” 这是我的控制器:

ContactViewModel contactViewModel = new ContactViewModel();
contactViewModel.Countries = DbUnitOfWork.CountriesRepository.GetAll()
    .Select(c => c.Name)
    .AsEnumerable()
    .Select(c => new SelectListItem
    {
        Value = c.ToString(),
        Text = c.ToString()
    });

这是在视图中:

@Html.DropDownListFor(m => m.Country.Name,
    Model.Countries,
    Resources.SelectCountry,
    dropdown)

如您所见,我没有使用 ViewData。如何防止这种异常?我的模型属性中有 [Required] 但没有显示错误消息。

更新

这是我的视图模型中国家的字段:

    public IEnumerable<SelectListItem> Countries { get; set; }

    [Required(ErrorMessageResourceType = typeof(Resource), ErrorMessageResourceName = "CountryErrorMessage")]
    [Display(ResourceType = typeof(Resource), Name = "Country")]
    public CountryModel Country { get; set; }

这是在视图中

   @model MyApp.ViewModels.ContactViewModel
4

1 回答 1

9

我通常在IEnumerable<SelectListItem>未实例化时看到这一点。

在您的 ViewModel 中,尝试添加这样的构造函数

public ContactViewModel()
{
    Countries = new List<SelectListItem>();
}
于 2013-10-09T20:25:51.140 回答