我正在尝试使用 URLLoader 接收数组。我将 ac3corelib 包含到我的项目中并声明了 JSON 库:“import com.adobe.serialization.json.JSON;” 但是,当我使用“JSON.decode(e.target.data)”时,我收到错误“访问未定义的属性 JSON”。
这是代码:
import com.adobe.serialization.json.JSON;
private function getContacts():void {
var contacts:URLLoader = new URLLoader();
contacts.addEventListener(Event.COMPLETE, onLoaded);
function onLoaded(e:Event):void {
var con:Object = JSON.decode(e.target.data);
}
contacts.load(new URLRequest("http://domain.com/cmd.php?action=contacts"));
}
提前致谢!