我正在使用MVC3剃须刀,我正在尝试将一个对象传递给部分视图,并且它不起作用。
没有将对象模型发送到部分视图,这可以正常工作:
Html.RenderAction("Index","ViewName");
尝试这个没有发送模型对象,我变为null(对象有数据,视图期望它):’
Html.RenderAction("Index","ViewName",objectModel);
这是否可以使用RenderAction?
谢谢!
解决方法
说你想通过foo作为模型,先把它做好
public class Foo { public string Name { get; set; } public int Age { get; set; } }
现在做一个ActionResult
public ActionResult FooBar(Foo _foo){ return PartialView(_foo); }
叫它
@Html.RenderAction("FooBar","Controller",new { Name = "John",Age=20 });