在多个视图上处理模型数据的最佳方法?

时间:2013-04-11 16:33:48

标签: c# asp.net-mvc session-variables

我知道这有几种不同的问题,但我不确定我的具体问题是什么。由于业务规则,我无法使用数据库在视图之间临时存储数据。静态变量已经出局(多用户)。我试图避免会话和tempdata。如果我使用Viewstate,我将存储大约9-12个模型的数据,这将减慢页面加载速度。我有多页表单,如果用户返回表单,则需要重新填充。我知道这不是理想的方式,但是有人可以建议一种方法来保存除会话变量之外的多个模型的数据吗?我假设每个视图都需要重写Tempdata。我不能提供代码,我知道这不是一个有利的设计,但规则是有限的。

谢谢。

1 个答案:

答案 0 :(得分:1)

我认为使用Session没有任何问题,即使对于MVC也是如此。它是一个工具,在您需要时使用它。我发现大多数人都倾向于避免使用Session,因为代码通常非常难看。我喜欢在会话中使用Generic Wrapper来存储会话,这些对象提供了一个强类型和可重用的类(例子):

public abstract class SessionBase<T> where T : new()
{
    private static string Key
    {
        get { return typeof(SessionBase<T>).FullName; }
    }

    public static T Current
    {
        get
        {
            var instance = HttpContext.Current.Session[Key] as T;

            // if you never want to return a null value
            if (instance == null)
            {
                HttpContext.Current.Session[Key] = instance = new T();
            }

            return instance;
        }
        set
        {
            HttpContext.Current.Session[Key] = value;
        }
    }

    public static void Clear()
    {
        var instance = HttpContext.Current.Session[Key] as T;
        if (instance != null)
        {
            HttpContext.Current.Session[Key] = null;
        }
    }
}

创建需要存储的类:

[Serializable]  // The only requirement
public class Person
{
  public string FirstName { get; set; }
  public string LastName { get; set; }
}

创建您的具体类型:(真的很容易吗?)

public class PersonSession : SessionBase<Person> { }

随时随地使用它,无论你想要什么(只要它是可序列化的)

public ActionResult Test()
{
  var Person = db.GetPerson();

  PersonSession.Current = Person;

  this.View();
}

[HttpPost]
public ActionResult Test(Person)
{
  if (Person.FirstName != PersonSession.Current.FirstName)
  {
    // etc, etc 

    PersonSession.Clear();
  }
}