1

我正在为诺基亚 S40 平台制作一个网络应用程序。我正在使用返回以下 JSON 的 Javascript 调用 Web 服务

{ "status_code": 200, "status_txt": "OK", "data": { "expand": [ { "short_url": "http:\/\/bit.ly\/msapps", "long_url": "http:\/\/www.microsoft.com\/web\/gallery\/?wt.mc_id=soc-in-wag-msp-M389", "user_hash": "gbL9jV", "global_hash": "eHgpGh" } ] } } 

我想获得“short_url”和“long_url”值

我正在使用eval作为var obj = eval ("(" + xmlhttp.responseText + ")");

其中xmlhttp.responseText包含 JSON 响应。请帮忙

4

3 回答 3

9

试过这个并且工作

 var s = '{ "status_code": 200, "status_txt": "OK", "data": { "expand": [ { "short_url": "http://bit.ly/msapps", "long_url": "http://www.microsoft.com/web/gallery/?wt.mc_id=soc-in-wag-msp-M389", "user_hash": "gbL9jV", "global_hash": "eHgpGh" } ] } } '

 var d = JSON.parse(s);
 console.log(d.data.expand[0].short_url);
 console.log(d.data.expand[0].long_url);
于 2013-08-24T09:19:57.970 回答
1

这个表达

JSON.parse('{ "status_code": 200, "status_txt": "OK", "data": { "expand": [ { "short_url": "http:\/\/bit.ly\/msapps", "long_url": "http:\/\/www.microsoft.com\/web\/gallery\/?wt.mc_id=soc-in-wag-msp-M389", "user_hash": "gbL9jV", "global_hash": "eHgpGh" } ] } }').data.expand[0].short_url

返回“ http://bit.ly/msapps

于 2013-08-24T09:28:06.900 回答
-3

这个怎么样

var json = "{}" // Your JSON string
json = new Function('return ' + json)();
console.log(json.data.expand[0].short_url, json.data.expand[0].long_url);
于 2013-08-24T09:25:21.433 回答