将 ViewData 传递给 RenderPartial
我正在尝试调用此方法:
RenderPartialExtensions.RenderPartial Method (HtmlHelper, String, Object, ViewDataDictionary)
http://msdn.microsoft.com/ en-us/library/dd470561.aspx
但我没有看到任何在表达式中构造 ViewDataDictionary 的方法,例如:
<% Html.RenderPartial("BlogPost", Post, new { ForPrinting = True }) %>
有什么想法如何做到这一点吗?
I'm trying to call this method:
RenderPartialExtensions.RenderPartial Method (HtmlHelper, String, Object, ViewDataDictionary)
http://msdn.microsoft.com/en-us/library/dd470561.aspx
but I don't see any way to construct a ViewDataDictionary in an expression, like:
<% Html.RenderPartial("BlogPost", Post, new { ForPrinting = True }) %>
Any ideas how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这对我有用:
This worked for me:
我已经设法使用以下扩展方法来做到这一点:
这样调用它:
I've managed to do this with the following extension method:
calling it this way:
您可以这样做:
因为 viewdatadictionary 可以在其构造函数中获取一个对象来反映。
You can do:
As viewdatadictionary can take an object to reflect against in its constructor.
这并不完全是您所要求的,但您可以使用 ViewContext.ViewBag。
This is not exactly what you asked for, but you can use ViewContext.ViewBag.