MVC 3 IListPOST 上的模型属性为 NULL
我将让代码在这里说话,我有这样的东西:
class Problem
{
public string Title { get; set; }
public string Description { get; set; }
public virtual IList<Symptom> Symptoms { get; set; }
}
class Symptom
{
public string Comments { get; set; }
public virtual Category Category { get; set; }
}
class Category
{
public string Name { get; set; }
}
我有一个模式,允许用户在我的视图上添加症状列表。添加的每个症状都会生成一个如下所示的输入(其中 N 是索引):
<input type="text" name="Symptom[N].Name" value="@Model.Symptom[N].Name">
<input type="text" name="Symptom[N].Category" value="@Model.Symptom[N].Category">
一旦我将数据发布到我的控制器,该模型就会包含一个有效的症状列表(如果我添加 3,我的Product.Symptom 列表有 3 个实体),并且每个症状的 [Comments] 已保留,但每个症状的 [Category] 属性为 NULL。我在这里做错了什么?我已经尝试了很多方法,但最终还是以 NULL 作为每个方法的 [Category]。
我正在使用 Entity Framework 4.1 Code First 和 Fluent API,并使用 Razor 语法在 MVC 3 中进行开发。
I'll let the code do the talking here, I have something like this:
class Problem
{
public string Title { get; set; }
public string Description { get; set; }
public virtual IList<Symptom> Symptoms { get; set; }
}
class Symptom
{
public string Comments { get; set; }
public virtual Category Category { get; set; }
}
class Category
{
public string Name { get; set; }
}
I have a modal that allows users to add a list of symptoms on my view. Each symptom being added produces an INPUT that looks like this (where N is the index):
<input type="text" name="Symptom[N].Name" value="@Model.Symptom[N].Name">
<input type="text" name="Symptom[N].Category" value="@Model.Symptom[N].Category">
Once I POST the data to my controller, the model contains a valid list of Symptom (if I add 3, my Product.Symptom list has 3 entities) and the [Comments] of each symptom has persisted, but the [Category] property of each is NULL. What am I doing wrong here? I've tried numerous things but I still end up with NULL as the [Category] for each.
I'm using Entity Framework 4.1 Code First with Fluent API developing in MVC 3 using Razor syntax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
我认为正在发生的事情是它试图将
string
绑定到无效的Category
。如果要将文本映射到Category
类的Name
属性,则需要将其指定得更深一层。Try this:
What I think is happening is that it's trying to bind a
string
to aCategory
which is invalid. If you want to map the text to theName
property on theCategory
class, you will need to specify it one level deeper.