.NET MVC 自定义视图引擎布局
在FindView
方法中的自定义视图引擎中,如何查看使用的Layout
? masterName
始终为空。
ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache) {
// How do I get WebViewPage.Layout to know what layout is used?
}
In a custom viewengine in the FindView
method, how can I see the Layout
used? masterName
is always empty.
ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache) {
// How do I get WebViewPage.Layout to know what layout is used?
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您使用
return View(string viewName, string masterName)
在控制器级别设置 master,否则masterName
将始终为空。主机通常是在视图本身的编译过程中确定的。Unless you are setting your master at the controller level with
return View(string viewName, string masterName)
, themasterName
will always be empty. The master is typically determined during the compilation of the view itself.