【发布时间】:2013-06-11 11:55:52
【问题描述】:
在我的应用程序中,我使用了 Json。这是我的应用程序中的 JSON 响应
This is my Response:
[
{
"response": "Success",
"errorMsg": "",
"userId": "1",
"userCompany": "xxxyy",
"userName": "sham",
"userAddress": "chennai",
"userCity": "xxxxx",
"userMobile": "xxxx",
"userEmail": "xxx"
},
{
"response": "Success",
"errorMsg": "",
"productImage": "http://www.iii.jpg",
"productDescription": "Loaded box on pallets - Bart's package",
"productCost": "10",
"productBoxWeight": "10.0"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "1.4",
"transportCountry": "Colombia",
"transportPort": "Havana"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "0.7",
"transportCountry": "Brazil",
"transportPort": "Santos"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "0.9",
"transportCountry": "South Africa",
"transportPort": "Durban"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "0.9",
"transportCountry": "Chili",
"transportPort": "San Antonio"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "2.7",
"transportCountry": "Australia",
"transportPort": "Maersk"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "1",
"transportCountry": "Marocco",
"transportPort": "Casablanca"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "1",
"transportCountry": "Kuwait",
"transportPort": "Shuwaikh"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "1",
"transportCountry": "Jordan",
"transportPort": "Aqaba"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "0.8",
"transportCountry": "Saoudi Arabia",
"transportPort": "Jeddah"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "0.8",
"transportCountry": "Malta",
"transportPort": "Maraxklokk"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "0.9",
"transportCountry": "Mexico",
"transportPort": "Veracruz"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "1.2",
"transportCountry": "Thailand",
"transportPort": "Bangkok"
},
{
"response": "Success",
"errorMsg": "",
"transportCost": "1",
"transportCountry": "Thailand",
"transportPort": "havana"
}
]
如何检索一个数组中的前两个集合和另一个数组中的其他集合...我是新手,请帮我修复它...
【问题讨论】:
-
你能否给我正确的信息,你需要从那个回复中得到什么?@IOSdev
-
{ "response": "Success", "errorMsg": "", "userId": "1", "userCompany": "xxxyy", "userName": "sham", "userAddress ": "chennai", "userCity": "xxxxx", "userMobile": "xxxx", "userEmail": "xxx" },我需要像这样分开每个集合...
-
更改您的响应,如键:值方式,然后读取响应并保存在 JsonArray 中。您可以根据密钥管理响应以保存适当的数组。
-
是否可以更改您的回复?
-
你的 json 格式不是正确的格式亲爱的..请检查 jsonlint 或 jsonviewer?
标签: objective-c json nsarray