首先,我在localserver,xampp,jquery uploadify上工作只需上传一个文件,其他文件都是100%,并保持这样。当点击x按钮停止时我收到此消息:'未捕获异常:错误动作'??有什么想法吗?这是wordpress项目。 我的代码:
uploadifyObj={
uploader : '<?php echo $full_path_ajax_swf_dir; ?>',
script : '<?php echo $full_path_ajax_php; ?>',
scriptData : {'extra' : '5'},
cancelImg : '<?php echo WP_PLUGIN_URL . '/' . $plugin_dir_name.'/iks.png';?>',
folder : 'path',
queueID : 'fileQueue',
auto : true,
multi : true,
method : 'GET',
fileDesc: 'Image files',
fileExt : '*.jpg;*.jpeg;*.png',
buttonText : 'Choose...',
simUploadLimit: 20,
onComplete : function(event, queueID, fileObj, response, data) {
alert(response);
},
onError : function(event,queueID, fileObj){
alert(event);
},
onAllComplete : function(event, data){
alert('Everything is over')l
}
};
$("#uploadify").uploadify(uploadifyObj);
和php部分:
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = WP_CONTENT_DIR. '/uploads/'.$plugin_dir_name.'/'. get_option('myFolder') .'/';
$targetFile = str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];
$jsonResponse->msg = $targetFile;
move_uploaded_file($tempFile,$targetFile);
/*
if(!file_exists($targetFile)) {
move_uploaded_file($tempFile,$targetFile);
$jsonResponse->msg = 'file dont exist';
}
else{
$jsonResponse->msg = 'file exist : '.$_FILES['Filedata']['name'];
} */
print json_encode($jsonResponse);
}
答案 0 :(得分:1)
您的自定义onComplete
侦听器必须return true
以允许Uploadify在文件上载完成后删除队列项。
红色“x”按钮取消上传。当您单击它时,您告诉Uploadify的Flash上传器停止上传相关文件。 Flash正在抛出错误,因为它被告知要取消已经完成的文件上传。
如果您不希望文件在完成上传后从队列中消失(这是自定义onComplete侦听器返回true时发生的情况),则必须删除或替换取消按钮或其事件侦听器。