我是 ASP.Net MVC 的新手,想知道是否有与 CakePHP 等中的回调函数或beforeFilter()
方法afterFilter()
等效beforeRender()
。
我想做的是使用ViewBag
设置一些全局变量PageTitle
,例如我有多个模块共享相同的标题和其他属性。
我以前也有一个父类——它AppController
在 CakePHP 中被调用,它可以实现那些使我能够运行函数并将变量发送到我的视图的回调函数。我在 ASP.Net MVC 中做了类似的事情,但它现在没用了,因为我无法在函数运行之前启动我想要运行的Index()
函数。
应用控制器.cs
public class AppController : Controller
{
public static string message = "Nice!";
public void PageInfo()
{
ViewBag.Message = message;
}
}
家庭控制器.cs
public class HomeController : AppController
{
public ActionResult Index()
{
PageInfo();
return View();
}
public ActionResult About()
{
return View();
}
}
我知道这听起来很傻,但是作为一个 ASP.Net 初学者是一种可怕的感觉,所以请放轻松!
谢谢