c# – RenderAction差异
发布时间:2020-12-15 08:01:07 所属栏目:百科 来源:网络整理
导读:为什么这段代码是正确的: @{ Html.RenderAction("PostImagesForPost","BlogPost",new { id = Model.ID }); } 而这段代码 @Html.RenderAction("PostImagesForPost",new { id = Model.ID }) 通过此错误消息: Compiler Error Message: CS1502: The best overl
为什么这段代码是正确的:
@{ Html.RenderAction("PostImagesForPost","BlogPost",new { id = Model.ID }); } 而这段代码 @Html.RenderAction("PostImagesForPost",new { id = Model.ID }) 通过此错误消息:
为什么使用'{”}’这么重要? 谢谢 解决方法
必须在脚本块中调用Html.RenderAction,并且无法在标记中调用.
作为标记的替代方法,您将使用: @Html.Action("PostImagesForPost",new { id = Model.ID }) 有关Action和RenderAction的差异,请参见此处: http://haacked.com/archive/2009/11/18/aspnetmvc2-render-action.aspx/ (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |