上传大文件时不触发DataEvent.UPLOAD_COMPLETE_DATA,而上传小文件时则触发

时间:2019-12-30 15:12:20

标签: java flash

以下是我的代码。当文件较小时,此代码可以正常工作。但是,当尺寸较大时,则无法使用。我确定服务器端内容已写入响应中。我可以确认上传已完成,因为我可以在Db表中看到数据。 max-post-size =“ 2147483648 文件上传大小为11.1MB

private var fileReference:FileReferenceProgress = null;
private function onImportClick():void
{
    initReference();
}

private function initReference():void
{
    fileReference = new FileReferenceProgress();
    fileReference.addEventListener(DataEvent.UPLOAD_COMPLETE_DATA, onFileUpload);
}

private function onFileUpload(e:DataEvent):void
{
    if (e.data == "Success")
    {
        AlertDialog.show("Success", "Success", Alert.OK);
        executeLookup(_currentFilter);
    }
    else
        AlertDialog.show(e.data, "Error", Alert.OK);

    resetUpload();
}

有人可以给我一个解决方案吗? 预先感谢。

0 个答案:

没有答案