我正在尝试使用Localhost(IIS)在AS3中加载JSON文件。 如果我在本地运行该文件它完全正常。 但是当我用Localhost打开swf时,它不会无缘无故地加载JSON文件...... 应该给出权限,因为我能够从同一个文件夹加载图像...... 任何想法?
swf代码
import com.adobe.serialization.json.JSON;
var textytext:TextField=new TextField()
addChild(textytext)
var myRequest:URLRequest = new URLRequest("TESTJSON.json");
var myLoader = new URLLoader();
myLoader.addEventListener(Event.COMPLETE, onload);
myLoader.load(myRequest);
var myData:Object
function onload(evt:Event):void
{
textytext.text="nichts"
myData= JSON.decode(myLoader.data);
textytext.text=String(myData.ReadMePlease)
}
和JSON文件
{
"ReadMePlease":"Awww yeah"
}
答案 0 :(得分:0)