gpt4 book ai didi

c# - 如何将 JSON 数组转换为 C# 列表?

转载 作者:行者123 更新时间:2023-11-30 21:57:24 24 4
gpt4 key购买 nike

我正在将对象序列化为 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com