当模型是父模型的属性且为 null 时,强类型分部视图会出现错误

发布于 2024-08-21 16:27:48 字数 969 浏览 5 评论 0原文

我在调用 Html.RenderPartial 时遇到以下异常:

传递到字典中的模型项的类型为“ChildClass”,但该字典需要类型为“ParentClass”的模型项。

这两个类与此相关:

public class ChildClass { /* properties */ }

public class ParentClass
{
    public ChildClass ChildProperty { get; set; }

    /* other properties */
}

我有一个 ParentClass 实例,其中 ChildProperty 的值为 null

我有两个部分视图,ParentView (ViewUserControl) 和 ChildView (ViewUserControl)。

在第一个视图中,我有以下内容...

<% Html.RenderPartial("~/Views/Controls/ChildView.ascx", Model.ChildProperty); %>

这是抛出本文顶部列出的异常的行。

如果 ChildProperty 不为空,我已经验证了正确的功能。为什么 MVC 认为该属性的 null 值属于父类型?

我可以通过添加仅在 ChildProperty 不为 null 时呈现 ChildView 的代码来解决此问题,但这一半破坏了拥有视图的意义。

I am getting the following exception on a call to Html.RenderPartial:

The model item passed into the dictionary is of type 'ChildClass' but this dictionary requires a model item of type 'ParentClass'.

These two classes are related this:

public class ChildClass { /* properties */ }

public class ParentClass
{
    public ChildClass ChildProperty { get; set; }

    /* other properties */
}

I have an instance of ParentClass where the value of ChildProperty is null.

I have two partial views, ParentView (ViewUserControl<ParentClass>) and ChildView (ViewUserControl<ChildClass>).

In the first view, I have the following...

<% Html.RenderPartial("~/Views/Controls/ChildView.ascx", Model.ChildProperty); %>

This is the line that is throwing the exception listed at the top of this post.

I have verified correct functionality if ChildProperty is not null. Why does MVC think that a null value of this property is of the parent type?

I can workaround this issue by adding code that only renders the ChildView if ChildProperty is not null, but this half defeats the point of having the view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

输什么也不输骨气 2024-08-28 16:27:48

看看这里的答案:带有 null 模型的 renderpartial 传递了错误的类型

如果有效,您的修复应该如下所示:

<% Html.RenderPartial("~/Views/Controls/ChildView.ascx", Model.ChildProperty, 
      new ViewDataDictionary()); %> 

Have a look at the answer here: renderpartial with null model gets passed the wrong type

If it works, your fix should look like this:

<% Html.RenderPartial("~/Views/Controls/ChildView.ascx", Model.ChildProperty, 
      new ViewDataDictionary()); %> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文