我只是在我的网站上实现 Jquery Uploadify-Plugin。这是代码:
$('#uploadbtn').uploadify({
'debug' : true,
'fileTypeDesc' : imagestxt,
'removeCompleted' : false,
'uploadLimit' : 40,
'auto' : false,
'queueID' : 'uploadqueue',
'fileTypeExts' : '*.jpg; *.jpeg; *.png; *.gif',
'buttonClass' : 'uploadbtn',
'fileSizeLimit' : '5MB',
'buttonText' : uploadbtntext,
'swf' : '../../js/uploadify.swf',
'uploader' : '../../actions/upload.php',
'width' : '200',
'method' : 'post',
'onDialogClose' : function(queueData) {
if (queueData.queueLength > 0)
{
$(".uploadinstructions").hide();
$(".albumoptions").show();
$("#startupload").removeAttr("disabled");
$(document).blur();
}
},
'onUploadSuccess' : function(file, data, response) {
alert('The file was saved to: ' + data);
},
'onUploadComplete' : function(file) {
$("#startupload").removeAttr("disabled");
},
'onComplete' : function (event, queueID, fileObj, response, data) {
alert(response);
}
});
问题是,当我上传文件时,我在弹出窗口中收到一条错误消息,上面写着(400 Bad Request)。Firebug 中没有显示连接,可能是因为 Flash 应用程序。任何想法,如何解决这个问题?