3

这是关于@Andre Calil 在以下 SO Razor MVC 中提供的解决方案的问题,将可跨母版页、partiview 和视图访问的全局变量放在哪里?

我正在使用 Andre 的方法并且有一个小问题:我的 _Layout 被强类型化为 BaseModel,而我的视图被强类型化为从 BaseModel 继承的 AccountModel。

问题是:如果我返回一个没有模型的视图,即返回 View(),那么我会得到一个异常。这是因为 BaseController OnActionExecuted 事件正在检查提供的模型是否为空,如下所示:

protected override void OnActionExecuted(ActionExecutedContext filterContext)
{
    if (filterContext.Result is ViewResultBase)//Gets ViewResult and PartialViewResult
    {
        object viewModel = ((ViewResultBase)filterContext.Result).Model;

        if (viewModel != null && viewModel is MyBaseModel)
        {
            MyBaseModel myBase = viewModel as MyBaseModel;
            myBase.Firstname = CurrentUser.Firstname; //available from base controller
        }
    }
    base.OnActionExecuted(filterContext);//this is important!
}

该模型为空,因此这种情况并不总是有效。我的下一步是确保始终将模型传递到视图中,即使它是空的 BaseModel 对象。问题是我得到以下异常:

The model item passed into the dictionary is of type 'MyNamespace.BaseModel', but this dictionary requires a model item of type 'MyNamespace.AccountModel'.

我需要澄清两点:

  1. 我认为这会起作用,因为 AccountModel 是 BaseModel 的子类?
  2. 如果上面代码中的模型为空,是否有另一种方法可以将模型注入每个视图,这样我就可以避免重构所有代码以包含返回视图(BaseModel.Empty)?
4

1 回答 1

1

您需要查看 Phil Haacked 在本文中描述的自定义剃刀视图:

http://haacked.com/archive/2011/02/21/changeing-base-type-of-a-razor-view.aspx

因此,基本上在您的 BaseController 中,您将设置一个公共变量,该变量将在基本控制器的 Initialize 事件中的每个请求中获取(在我的情况下,它是 User 的实例):

public class BaseController : Controller
{
   public User AppUser;

   protected override void Initialize(RequestContext requestContext)
   {
       base.Initialize(requestContext);
       AppUser = _userService.GetUser(id);
       ViewBag.User = AppUser;
   }
}

所以现在你有了一个变量,任何从基本控制器继承的控制器都可以访问它。剩下要做的就是弄清楚如何在视图中使用这个变量。这就是我上面链接的文章将为您提供帮助的地方。默认情况下,您的所有视图都是从 System.Web.Mvc.WebViewPage 生成的。但是,您可以通过执行以下操作来自定义此类的实现:

namespace YourApplication.Namespace
{
   public abstract class CustomWebViewPage : WebViewPage
   {
      private User _appUser;

      public User AppUser
      {
         get
         {
            try
            {
                _appUser = (User)ViewBag.User;
            }
            catch (Exception)
            {
                _appUser = null;
            }
            return _appUser;
         }
      }
   }

   public abstract class CustomWebViewPage<TModel> : WebViewPage<TModel> where TModel : class
   {
      private User _appUser;

      public User AppUser
      {
          get
          {
              try
              {
                 _appUser = (User)ViewBag.User;
              }
              catch (Exception)
              {
                 _appUser = null;
              }
              return _appUser;
          }
      }
   }
}

您刚刚定义了一个自定义 razor 视图类,它具有 user 属性,并尝试从我们在基本控制器中设置的 ViewBag.User 中获取该属性。剩下要做的就是告诉您的应用在尝试生成视图时使用此类。您可以通过在 VIEWS web.config 文件中设置以下行来执行此操作:

<pages pageBaseType="YourApplication.Namespace.CustomWebViewPage">

现在,在您的视图中,您可以获得 User 属性的助手,您可以像这样使用它:

@AppUser

请注意页面声明需要进入 VIEWS web.config 文件而不是主应用程序 web.config!

我认为这对您来说是一个更好的解决方案,因为您不必通过视图模型为所有视图提供基本模型。视图模型应该保留它的用途。

于 2013-09-20T13:28:48.010 回答