c# – RenderAction差异

c# – RenderAction差异,第1张

概述为什么这段代码是正确的: @{ Html.RenderAction("PostImagesForPost", "BlogPost", new { id = Model.ID }); } 而这段代码 @Html.RenderAction("PostImagesForPost", "BlogPost", new { id = Model.ID }) 通过此错误消息: Compiler Err 为什么这段代码是正确的:
@{   HTML.RenderAction("PostimagesForPost","BlogPost",new { ID = Model.ID });  }

而这段代码

@HTML.RenderAction("PostimagesForPost",new { ID = Model.ID })

通过此错误消息:

Compiler Error Message: CS1502: The best overloaded method match for ‘System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)’ has some invalID arguments

为什么使用'{”}’这么重要?

谢谢

解决方法 必须在脚本块中调用HTML.RenderAction,并且无法在标记中调用.

作为标记的替代方法,您将使用:

@HTML.Action("PostimagesForPost",new { ID = Model.ID })

有关Action和RenderAction的差异,请参见此处:

http://haacked.com/archive/2009/11/18/aspnetmvc2-render-action.aspx/

总结

以上是内存溢出为你收集整理的c# – RenderAction差异全部内容,希望文章能够帮你解决c# – RenderAction差异所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1245823.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存