如何在 ActionScript 中捕获流错误
How to catch Stream Error in ActionScript
我有以下代码,它试图 GET
一个公开托管的 (AWS S3) 文件。
private function ShowS3Message():void
{
// Attempt to download file from AWS
var descriptor:XML = NativeApplication.nativeApplication.applicationDescriptor;
var ns:Namespace = descriptor.namespaceDeclarations()[0];
var url:String = "https://s3.amazonaws.com/some-url/file-" + descriptor.ns::versionLabel.split(".").join("-") + ".txt";
var urlRequest:URLRequest = new URLRequest(url);
// Set up callback function
try{
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, awsFetchCallback);
loader.load(urlRequest);
}catch(error:Error){}
}
这是回调函数:
/**
* Callback function for AWS message file
*/
private function awsFetchCallback(event:Event):void
{
var data = event.target.data;
// show dialog
var msb:InformationMessageBox = new InformationMessageBox();
msb.mText = data;
msb.open(this, true);
}
当文件存在时,没有问题,代码运行正常。
当文件不存在时,抛出 StreamError,尽管有 catch 块。
我错过了什么?
你应该捕获IO错误事件,当文件不存在时不会抛出异常。
loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler);
然后创建您自己的错误处理函数。
此处文档中有更多详细信息:
https://help.adobe.com/fr_FR/FlashPlatform/reference/actionscript/3/flash/net/URLLoader.html
如果您只是想淹没错误(因为您似乎知道文件有时可能不存在)创建一个空的错误事件处理程序就足够了。
我有以下代码,它试图 GET
一个公开托管的 (AWS S3) 文件。
private function ShowS3Message():void
{
// Attempt to download file from AWS
var descriptor:XML = NativeApplication.nativeApplication.applicationDescriptor;
var ns:Namespace = descriptor.namespaceDeclarations()[0];
var url:String = "https://s3.amazonaws.com/some-url/file-" + descriptor.ns::versionLabel.split(".").join("-") + ".txt";
var urlRequest:URLRequest = new URLRequest(url);
// Set up callback function
try{
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, awsFetchCallback);
loader.load(urlRequest);
}catch(error:Error){}
}
这是回调函数:
/**
* Callback function for AWS message file
*/
private function awsFetchCallback(event:Event):void
{
var data = event.target.data;
// show dialog
var msb:InformationMessageBox = new InformationMessageBox();
msb.mText = data;
msb.open(this, true);
}
当文件存在时,没有问题,代码运行正常。 当文件不存在时,抛出 StreamError,尽管有 catch 块。
我错过了什么?
你应该捕获IO错误事件,当文件不存在时不会抛出异常。
loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler);
然后创建您自己的错误处理函数。
此处文档中有更多详细信息: https://help.adobe.com/fr_FR/FlashPlatform/reference/actionscript/3/flash/net/URLLoader.html
如果您只是想淹没错误(因为您似乎知道文件有时可能不存在)创建一个空的错误事件处理程序就足够了。