0

我只是在我的网站上实现 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 应用程序。任何想法,如何解决这个问题?

4

1 回答 1

0

我自己找到了答案,这非常愚蠢和容易,我只需要改变这个:

'swf'      : '../../js/uploadify.swf',
'uploader' : '../../actions/upload.php',

对此:

'swf'      : '../js/uploadify.swf',
'uploader' : '../actions/upload.php',
于 2013-01-31T15:10:29.417 回答