作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
通过任何机会,是否有任何简单的方法来为特定 Controller 内的所有操作设置默认的MasterView?
例如,如果我有HomeController,则我希望其内部的所有操作默认都继承Site.Master,但是如果我在AccountsController中,则希望所有操作均继承Admin.Master,依此类推。
我设法做到这一点:
return View("viewName", "masterName", objectModel);
class HomeController < ApplicationController
layout 'site'
def index
end
def create
...
end
class AccountsController < ApplicationController
layout 'admin'
def index
end
def create
...
end
最佳答案
您可以在该Controller类中重写OnActionExecuting。
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
ViewData["MasterfileToUser"] = "site";
}
using System;
using System.Web.Mvc;
public class MasterFileFilterAttribute : ActionFilterAttribute
{
public string Master { get; set; }
public override void OnActionExecuted( ActionExecutedContext filterContext)
{
if (filterContext.Result is ViewResult)
((ViewResult)filterContext.Result).MasterName = Master;
}
}
[MasterFileFilterAttribute(Master = "site")]
public class HomeController : Controller
{
// Action methods
}
关于.net - ASP.NET MVC-使用Controller相应地设置主视图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1418485/
我在 Java 中遇到异常处理问题,这是我的代码。当我尝试运行此行时出现编译器错误:throw new MojException("Bledne dane");。错误是: exception MojE
我刚刚开始学习asp.net。在你们的支持下,我希望我能从这个论坛学到更多东西。 我的问题是, 我在 asp.net 页面中有一个 TabContainer1,因为每个选项卡面板中有多个类似 (60)
我是一名优秀的程序员,十分优秀!