asp.net-mvc – 如何将模型传递给部分视图

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何将模型传递给部分视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个视图模型:
public class Parentviewmodel
    {
        public Id { get; set; }
        .....
        public Childviewmodel Child{ get; set; }
    }

public class Childviewmodel
    {
        public ChildId { get; set; }
        .....
    }

控制器:

public ActionResult Index()
        {
            .... <some code>
            return View("NewIndex",Parentviewmodel);
        }

    [HttpPost]
    public ActionResult PartialAction(Childviewmodel childView)
    {
        return RedirectToAction("Index");
    }

意见:@H_403_9@指数

@model Parentviewmodel
....
@Html.Partial("_Partial",Model.Child)

和_Partial

@model Childviewmodel
... do some stuff with child model

当我尝试打开索引页面时,我有一个错误

传入字典的模型项目的类型为“Parentviewmodel”,但此字典需要一个类型为“Childviewmodel”的模型项目.

为什么它尝试通过Parentviewmodel而不是Childviewmodel.我做错了什么?

解决方法

我和OP有同样的问题.从其中一个意见中,我意识到第二个参数不应该为null,即从
@model Parentviewmodel
@Html.Partial("_Partial",Model.Child)

如果Model.Child为空,则传递Model而不是Model.Child.如果第二个参数为空,那么您将首先检查代码,然后将初始化的Child作为第二个参数传递.这样的东西

@Html.Partial("_Partial",new Child())
原文链接:https://www.f2er.com/aspnet/250794.html

猜你在找的asp.Net相关文章