我知道,有很多问题,尝试过解决方案,但都没有奏效。基本上,我被卡住了......
ViewModel:
public class CreateStrengthViewModel
{
public string Strength { get; set; }
public IEnumerable<Categories.CategoryViewModel> Categories { get; set; }
public int Category { get; set; }
}
Post:
-----------------------------7e01e1381a08c2
Content-Disposition: form-data; name="__RequestVerificationToken"
iErDomlK5vCWAFFMlGkb2-HgLCoquxfeIlYeI3pmrsW_5VSD8-huS6JbCdA4OAg4s8nMgqKAHPHArVoQ3GzfFWf2I-Yx6iWgvkWRNI6jiKA1
-----------------------------7e01e1381a08c2
Content-Disposition: form-data; name="Strength"
FMC Extra
-----------------------------7e01e1381a08c2
Content-Disposition: form-data; name="Category"
1
-----------------------------7e01e1381a08c2--
Controller:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(
[Bind(Include = "Strength,Category")]
CreateStrengthViewModel strength)
{
using (StrengthServices service = new StrengthServices(new ImperialTobacco_Database()))
{
//service.CreateAndSave(strength);
...
}
}
}
无论我在做什么,控制器方法内部的强度都是null。浏览器会发送数据,但是ModelBinder不会做任何事情。哦,顺便说一句:完全相同的代码适用于具有不同Include字段的不同ViewModel。是的,我试图删除Bind,或只绑定一个传入的变量没有任何变化。
有趣的是;这是有效的:
public class CreateCompanyViewModel
{
public string Name { get; set; }
public string Color { get; set; }
public IEnumerable<MarketViewModel> MarketsOfOperations { get; set; }
public IEnumerable<int> SelectedOperations { get; set; }
}
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "Name,Color,SelectedOperations")] CreateCompanyViewModel company)
{
using (CompanyServices service = new CompanyServices(new ImperialTobacco_Database()))
{
service.CreateAndSave(company);
return RedirectToAction("Index", "Management");
}
}
我会说实话,我不知道发生了什么,以及为什么ModelBinder从发布的数据中没有任何内容,特别是当一个几乎相同的数据完美无缺时。
P.S。:我尝试更改Property和Bind名称但又没有运气。
答案 0 :(得分:0)
问题是您的模型中的属性名称与操作方法中的参数名称相匹配。
因此,如果您从
更改操作名称参数public ActionResult Create([Bind(Include = "Strength,Category")] CreateStrengthViewModel strength)
要
public ActionResult Create([Bind(Include = "Strength,Category")] CreateStrengthViewModel strengthModel)
这将解决它