【发布时间】:2010-07-03 01:44:19
【问题描述】:
我目前正在使用 json-framework 并且需要一些帮助,尽管我需要解析一些我从服务器获取的 JSON。这是 JSON 的外观: 就像我说的,我已经安装了 json-framework,但我不知道如何实际解析它。有人可以告诉我吗?谢谢!
[
{
"id":"0",
"name":"name",
"info":"This is info",
"tags":
[
{
"id":"36",
"tag":"test tag",
},
{
"id":"37",
"tag":" tag 2",
}
],
"other":"nil"
},
{
"id":"1",
"name":"name",
"info":"This is info",
"tags":
[
{
"id":"36",
"tag":"test tag",
},
{
"id":"37",
"tag":" tag 2",
}
],
"other":"nil"
}
]
【问题讨论】: