nokia S40 プラットフォーム用の Web アプリを作成しています。次の 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 応答が含まれます。助けてください