我正在为诺基亚 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 响应。请帮忙