0

我知道这个问题已经有一些线索,但没有一个对我有帮助。

我有一个图像管理器,我想用“onComplete”事件重新加载页面,但这对我不起作用。

你可以看到一个例子: http: //graficnova.com/uploadifytest/imgLoader.php

一切正常!!,但你需要按 f5 键来刷新它:(。

谢谢,对不起我的英语!

代码:

头:

<script type="text/javascript">
        $(function() {
            $("#fileInput").uploadify({
                width : 100,
                swf           : 'swf/uploadify.swf',
                uploader      : 'php/uploadify.php',                    
                queueID : 'imgloadList',
                oncomplete : function() {
                    alert('hello world?'); //<- THIS NOT WORK
                }
            });             
        });                 
    </script>

php: 上传.php

if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];

//$targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder;


$targetPath = 'xxxxx/xxxx/xxxx/xxxx';



$targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name'];



// Validate the file type
$fileTypes = array('jpg','jpeg','gif','png'); // File extensions
$fileParts = pathinfo($_FILES['Filedata']['name']);

if (in_array($fileParts['extension'],$fileTypes)) {     
    move_uploaded_file($tempFile,$targetFile);
    echo '1'; //<- return response
} else {
    echo 'Invalid file type.'; //<- return response
}   

}

4

1 回答 1

2

根据 Uploadify 文档,没有onComplete事件,但有一个“onUploadComplete”事件:

上传完成时每个文件触发一次,无论是成功还是返回错误。如果您想知道上传是否成功,最好使用 onUploadSuccess 事件或 onUploadError 事件。

可能想试一试。或退房onQueueComplete

于 2012-09-24T20:57:16.503 回答