MVC 3 IListPOST 上的模型属性为 NULL

发布于 2024-12-21 21:29:02 字数 926 浏览 2 评论 0原文

我将让代码在这里说话,我有这样的东西:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜是你 2024-12-28 21:29:02

试试这个:

<input type="text"
    name="Symptom[N].Category.Name"
    value="@Model.Symptom[N].Category.Name">

我认为正在发生的事情是它试图将 string 绑定到无效的 Category 。如果要将文本映射到 Category 类的 Name 属性,则需要将其指定得更深一层。

Try this:

<input type="text"
    name="Symptom[N].Category.Name"
    value="@Model.Symptom[N].Category.Name">

What I think is happening is that it's trying to bind a string to a Category which is invalid. If you want to map the text to the Name property on the Category class, you will need to specify it one level deeper.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文