作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将对象序列化为 JSON 字符串,以便将其存储在 cookie 中。该对象看起来像这样:
public class ShoppingCart
{
public List<ShoppingCartItem> Items { get; set; }
public ShoppingCart()
{
Items = new List<ShoppingCartItem>();
}
}
public class ShoppingCartItem
{
public enum ShoppingCartItemType
{
TypeOfItem,
AnotherTypeOfItem
}
public int Identifier { get; set; }
public ShoppingCartItemType Type { get; set; }
}
然后我希望能够从 cookie 中检索对象作为 JSON 字符串,并将其解码回类型为 ShoppingCart
的对象,其项目已正确反序列化。
这是我用来执行此操作的代码:
public class CookieStore
{
public static void SetCookie(string key, object value, TimeSpan expires)
{
string valueToStore = Json.Encode(value);
HttpCookie cookie = new HttpCookie(key, valueToStore);
if (HttpContext.Current.Request.Cookies[key] != null)
{
var cookieOld = HttpContext.Current.Request.Cookies[key];
cookieOld.Expires = DateTime.Now.Add(expires);
cookieOld.Value = cookie.Value;
HttpContext.Current.Response.Cookies.Add(cookieOld);
}
else
{
cookie.Expires = DateTime.Now.Add(expires);
HttpContext.Current.Response.Cookies.Add(cookie);
}
}
public static object GetCookie(string key)
{
string value = string.Empty;
HttpCookie cookie = HttpContext.Current.Request.Cookies[key];
if (cookie != null)
{
value = cookie.Value;
}
return Json.Decode(value);
}
}
请注意,存储 cookie 的效果非常好。它有正确的名称,而且 JSON 字符串对我来说看起来不错;这是一个例子:
{"Items":[{"Identifier":1,"Type":1}]}
问题是,当我尝试反序列化它时,我认为它没有识别出数组实际上是一个 List<ShoppingCartItem>
。所以我最终得到了一个 ShoppingCart
的实例Items 属性设置为空的类 List<ShoppingCartItem>
.
有谁知道我该怎么做?我宁愿继续使用标准 System.Web.Helpers.Json
如果可能的话,但如果需要更强大的 JSON 序列化程序,我愿意这样做。
最佳答案
需要显式转换类型,即
return Json.Decode<ShoppingCart>(value);
关于c# - 如何将 JSON 数组转换为 C# 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30771199/
我是一名优秀的程序员,十分优秀!