我有一个使用ajax检索的JSONP对象。返回的数据是......
{"example.COM":{"0":[94,57],"1":[94,57],"2":[94,57],"4":[94,54],"target":"example.com","categories":{"301":3,"304":22,"501":97}}}
唯一的问题是我无法使用我的javascript代码访问JSON对象。它通过回调返回并转储到变量data
。
我试过......
data.example.com
,返回undefined data["example.com"]
,返回undefined 对此有任何帮助将不胜感激。