【问题标题】:Implementing ITempDataProvider vs Using Cookies实现 ITempDataProvider 与使用 Cookie
【发布时间】:2015-02-05 18:18:12
【问题描述】:

我正在尝试使用 TempData 将数据从一个请求发送到另一个请求。

但是,由于 TempData 使用服务器会话,并且此应用程序是网络农场的,因此我将不得不使用 cookie 或数据库持久性,因为会话不会从一台服务器传输到另一台服务器。

有许多实现可以使用 cookie 代替默认会话:

public class CookieTempDataProvider : ITempDataProvider
{
    const string CookieName = "TempData";

    public void SaveTempData(
        ControllerContext controllerContext,
        IDictionary<string, object> values)
    {
        // convert the temp data dictionary into json
        string value = Serialize(values);
        // compress the json (it really helps)
        var bytes = Compress(value);
        // sign and encrypt the data via the asp.net machine key
        value = Protect(bytes);
        // issue the cookie
        IssueCookie(controllerContext, value);
    }

    public IDictionary<string, object> LoadTempData(
        ControllerContext controllerContext)
    {
        // get the cookie
        var value = GetCookieValue(controllerContext);
        // verify and decrypt the value via the asp.net machine key
        var bytes = Unprotect(value);
        // decompress to json
        value = Decompress(bytes);
        // convert the json back to a dictionary
        return Deserialize(value);
    }
...

参考。 http://brockallen.com/2012/06/11/cookie-based-tempdata-provider/

但是,这些方法似乎都不会在请求结束后删除 cookie。

在请求完成后使用 TempData 使数据过期不就是重点吗(除非您使用 TempData.Keep("myKey");)?

为什么不直接使用 cookie 而不是实现 ITempDataProvider?有什么区别/好处?

进一步阅读:

这是一个更简单的基于 cookie 的实现:

这是微软对 SessionState 提供者的实现:

为澄清而编辑:在以下代码中,Microsoft 在加载会话后将其删除,以使其无法再次加载:

// If we got it from Session, remove it so that no other request gets it
session.Remove(TempDataSessionStateKey);

【问题讨论】:

  • 在您的实现中删除 cookie 有什么问题?
  • 嗯,我有点好奇为什么我发现的其他实现都没有删除 cookie。我希望 cookie 被删除,就像微软删除会话一样;然而,这不是我在上面提到的 Brock Allen 的代码中发现的。

标签: c# asp.net-mvc cookies tempdata


【解决方案1】:

我在网上找到的解决方案都没有使 cookie 过期;所以,基本上它们实际上并不是临时数据。他们都只是让 cookie 在 LoadTempData() 之后存活,所以在那时,您甚至可能根本不使用 TempData。

在下面的实现中,cookie 只会在 HTTP 请求期间存活(因为 TempData 只应该如此),如果你想保持更长时间,你可以像往常一样使用TempData.Keep("yourKey"),它会调用再次调用 SaveTempData() 方法(根据the MVC source)。

最后一件事,此代码未针对速度或安全性进行优化。

public class CookieTempDataProvider : ITempDataProvider
{
    public const string TempDataCookieKey = "__ControllerTempData";

    public IDictionary<string, object> LoadTempData(ControllerContext controller)
    {
        HttpCookie cookie = controller.HttpContext.Request.Cookies[TempDataCookieKey];

        Dictionary<string, object> tempDataDictionary = new Dictionary<string, object>();

        if (cookie != null)
        {
            for (int keyIndex = 0; keyIndex < cookie.Values.Count; keyIndex++)
            {
                string key = cookie.Values.GetKey(keyIndex);
                if (!string.IsNullOrEmpty(key))
                {
                    string base64Value = cookie.Values.Get(keyIndex);
                    byte[] buffer = Convert.FromBase64String(base64Value);
                    using (MemoryStream ms = new MemoryStream(buffer))
                    {
                        BinaryFormatter formatter = new BinaryFormatter();
                        object value = formatter.Deserialize(ms);
                        tempDataDictionary.Add(key, value);
                    }
                }
            }

            cookie.Expires = DateTime.Now.AddDays(-1d); // expire cookie so no other request gets it
            controller.HttpContext.Response.SetCookie(cookie);
        }

        return tempDataDictionary;
    }

    public void SaveTempData(ControllerContext controller, IDictionary<string, object> values)
    {
        HttpCookie cookie = controller.HttpContext.Request.Cookies[TempDataCookieKey];
        bool hasValues = (values != null && values.Count > 0);

        if (cookie == null)
        {
            cookie = new HttpCookie(TempDataCookieKey);
            controller.HttpContext.Response.Cookies.Add(cookie);
        }

        if (hasValues)
        {
            foreach (KeyValuePair<string, object> kvp in values)
            {
                BinaryFormatter formatter = new BinaryFormatter();
                using (MemoryStream ms = new MemoryStream())
                {
                    formatter.Serialize(ms, kvp.Value);
                    byte[] bytes = ms.GetBuffer();
                    string base64Value = Convert.ToBase64String(bytes);

                    string keyExists = cookie.Values.Get(kvp.Key);
                    if (keyExists != null)
                    {
                        cookie.Values.Set(kvp.Key, base64Value);
                    }
                    else
                    {
                        cookie.Values.Add(kvp.Key, base64Value);
                    }
                }
            }

            cookie.Expires = DateTime.Now.AddDays(1d);
            controller.HttpContext.Response.SetCookie(cookie);
        }
        else
        {
            // delete session if null values are passed
            if (controller.HttpContext.Request.Cookies[TempDataCookieKey] != null)
            {
                cookie.Expires = DateTime.Now.AddDays(-1d); // expire cookie so no other request gets it
            }
        }
    }
}

【讨论】:

    猜你喜欢
    • 2012-01-06
    • 2018-10-25
    • 1970-01-01
    • 2015-03-23
    • 1970-01-01
    • 2023-03-15
    • 2014-08-07
    • 2011-04-19
    • 1970-01-01
    相关资源
    最近更新 更多