.NET MVC 自定义视图引擎布局

发布于 2024-12-09 02:18:30 字数 348 浏览 0 评论 0原文

FindView方法中的自定义视图引擎中,如何查看使用的LayoutmasterName 始终为空。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-12-16 02:18:30

除非您使用 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), the masterName will always be empty. The master is typically determined during the compilation of the view itself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文