asp.net-mvc-2 – 如何在Asp.net MVC 2中使用Base ViewModel

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-2 – 如何在Asp.net MVC 2中使用Base ViewModel前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我熟悉Asp.Net MVC时,我使用的是MVC 2,我注意到在Kigg项目中使用了BaseViewData类,我不确定如何实现.

我希望我的每个viewmodels都有一些可用的值.使用一个迭代表,但我想知道最好的做法是什么,Kigg如何做?

Kigg

public abstract class BaseViewData 
{ 
  public string SiteTitle { get; set; }
  // ...other properties
}
public class UserListViewData : BaseViewData
{
   public string Title { get; set; }
   // .. other stuff
}

在我的WebForms应用程序中,我使用从System.Web.UI.Page继承的BasePage.
所以,在我的MVC项目中,我有这个:

public abstract class Baseviewmodel
{
    public int SiteId { get; set; }
}
public class Userviewmodel : Baseviewmodel
{
  // Some arbitrary viewmodel
}
public abstract class BaseController : Controller
{
    private IUserRepository _userRepository;

    protected BaseController()
        : this(
            new UserRepository())
    {
    }
 }

参考Kigg方法,我如何确保从Baseviewmodel继承的每个viewmodel都具有SiteId属性

我应该使用什么最佳做法,样本或模式?

解决方法

我将采取的方法是使用基本控制器,并使用OnActionExecuted覆盖用普通数据填充您的模型.然后只需确保您的控制器从您的基本控制器继承,并且模型从基本模型继承.
public class BaseController : Controller
{

    public override void OnActionExecuted( ActionExecutedContext filterContext )
    {
        var result = filterContext.Result as ViewResult;
        if (result != null)
        {
             var baseModel = result.Model as Baseviewmodel;
             if (baseModel != null)
             {
                 baseModel.SiteID = ...
             }
        }
    }
}
原文链接:https://www.f2er.com/aspnet/245671.html

猜你在找的asp.Net相关文章