5

我正在关注 JSON 数据

[{"id":"1","text":"System Admin","target":{"jQuery1710835279177001846":12},"checked":true,"state":"open"},
{"id":"2","text":"HRMS","target":{"jQuery1710835279177001846":34},"checked":false,"state":"open"},
{"id":"3","text":"SDBMS","target":{"jQuery1710835279177001846":42},"checked":false},
{"id":"8","text":"Admin","target":{"jQuery1710835279177001846":43},"checked":false},
{"id":"9","text":"My test Admin","target":{"jQuery1710835279177001846":44},"checked":false,"state":"open"},
{"id":"24","text":"ModuleName","target":{"jQuery1710835279177001846":46},"checked":false,"state":"open"}]

尝试使用强类型使用Json.Net进行解析

这是我的属性类

public class testclass
    {
        public string id { get; set; }
        public string text { get; set; }
        public string @checked { get; set; }
        public string state { get; set; }
        public target jQuery1710835279177001846 { get; set; }

    }
    public class testclass2
    {
        public List<testclass> testclass1 { get; set; }

    }

    public class target
    {
        public string jQuery1710835279177001846 { get; set; }
    }

在这里我试图访问我得到异常的数据

Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'QuexstERP.Web.UI.Areas.SysAdmin.Controllers.testclass' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly.

我的控制器代码看起来像

 public void Test(string Name, object modeldata)
        {

            var obj = JsonConvert.DeserializeObject<testclass>(Name);

        }

知道如何在 C# 中解决这个问题

4

3 回答 3

8

您的 Json 字符串看起来有序列化的数组对象,因为它包含[ ]. 这意味着您有一个 Json 字符串,该字符串是在数组对象序列化后形成的。所以你需要反序列化成数组对象,所以试试这个

var obj = JsonConvert.DeserializeObject<List<testclass>>(jsonString);
于 2013-03-26T10:38:35.690 回答
3

你有一个TestClass数组。所以应该是这样的。

var model= JsonConvert.DeserializeObject<List<testclass>>(Name);

你为什么使用 JSonConvert ?在 MVC3 中你可以这样做

return Json(yourmodel,JsonRequestBehavior.AllowGet);
于 2013-03-26T10:37:30.853 回答
1

你的 json 对象是这样的

{
      "id":"1",
      "text":"System Admin",
      "target":{
         "jQuery1710835279177001846":12
      },
      "checked":true,
      "state":"open"
}

我猜应该是这样的

{
      "id":"1",
      "text":"System Admin",
      "jQuery1710835279177001846":12,
      "checked":true,
      "state":"open"
}
于 2013-03-26T10:41:12.320 回答