加载“http://web.archive.org”时出现错误#2032通过 URLLoader
这是我在AS3中的代码
var request:URLRequest = new URLRequest("http://web.archive.org/web/*/http://stackoverflow.com");
var requestVars:URLVariables = new URLVariables();
var loader:URLLoader = new URLLoader();
request.method = URLRequestMethod.GET;
loader.addEventListener(Event.COMPLETE, onLoaded);
loader.load(request);
...... ...
错误详细信息: 未处理的 ioError:.文本=错误#2032
Here is my code in AS3 ...
var request:URLRequest = new URLRequest("http://web.archive.org/web/*/http://stackoverflow.com");
var requestVars:URLVariables = new URLVariables();
var loader:URLLoader = new URLLoader();
request.method = URLRequestMethod.GET;
loader.addEventListener(Event.COMPLETE, onLoaded);
loader.load(request);
...
...
Error Detail :
Unhandled ioError:. text=Error #2032
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议下载 Fiddler 或 Charles 并使用它来确定服务器响应是什么。
I recommend downloading Fiddler or Charles and using that to determine what the server response was.
您遇到的一个问题是没有创建 onLoaded 函数 - 至少在上面的文档中是这样。我还注意到您的网址中有一个*。我将其替换为链接 20080703183923 之一,该链接返回 Flash 中的 HTML 页面以供使用。这是获取 Flash 中信息的代码 ->
One issue you have is that there isn't a onLoaded function created - at least in your documentation above. I also noticed that you had an * in the url. I replaced that with one of the links 20080703183923 which returns a HTML page in flash to use. Here is the code to grab the info in flash ->
我试图重现你的问题。这是我发现的:
error.getStackTrace()
或error.message
以了解有关错误发生原因的更多信息。I tried to reproduce your problem. Here is what I found:
error.getStackTrace()
orerror.message
to find out more about why the error occured.