2

我正在尝试使用 blueimp 文件上传插件来异步上传图像,但是当我尝试上传它们时没有任何反应。根本没有触发任何回调函数。我正在使用此函数将文件上传器绑定到文件输入。

var initFileUpload = function (gender) {
//Used to bind fileupload plugin and send files

//bind file upload
$('#add_form').fileupload({
    namespace: gender+'_image',
    singleFileUploads: true,
    formData: [{name:'gender', value: gender}],
    fileInput: $("#"+gender+'_image'), 
    done: function(e, data){
        alert('success '+data.result);
    }

});
//Bind event callbacks
$('#add_form').bind('fileuploadsend', function (e, data) {
    console.log('sent');
});
$('#add_form').bind('fileuploaddone', function (e, data) {
    console.log('done');
});
$('#add_form').bind('fileuploadfail', function (e, data) {
    console.log(data.result);
});
$('#add_form').bind('fileuploadalways', function (e, data) {
    console.log(data.result);
});

}

灵感来自此处的多文件上传教程。我这样做是因为我有 3 个不同名称的不同输入。然后我在我的 ajax 调用中手动触发发送功能,或者尝试触发。

$.ajax({
      type: "POST",
      url: "/manage/processadditem",
      data: $("#add_form").serialize(),
      dataType: "html",
      success: function( response, textStatus, XHR )
      {
        if(response.indexOf('invalid') >= 0 || response.indexOf('Exception') >= 0){
            //Show them their errors
            alert(response);
        }
        else{
            //Upload item images
            //Send files
            $('#add_form').fileupload('send', {fileInput: $("#neutral_image"), url: '/manage/items/itemimage/test' });
            $('#add_form').fileupload('send', {fileInput: $("#male_image"), url: '/manage/items/itemimage/test' });
            $('#add_form').fileupload('send', {fileInput: $("#female_image"), url: '/manage/items/itemimage/test' });
            alert('should have uploaded image to cdn.completeset.com/items/test_nla.jpg if gender was neutral');
        }

      },
      error: function(jqXHR, textStatus, errorThrown){
        alert('An error occurred, please try again later.');
      }
    });

我在此处的程序文件上传部分下的文档中发现,您可以使用 send 方法手动发送文件,$('#fileupload').fileupload('send', {files: filesList});这就是我试图用来发送文件的行。不幸的是,我根本没有从任何回调函数中得到任何类型的响应,我也不知道为什么。

4

2 回答 2

2

我刚刚在这里使用了 malsup 表单插件。http://malsup.com/jquery/form/#ajaxForm在与 blueImp 苦苦挣扎 2 天后,我在几分钟内启动并运行了这个。

于 2012-08-11T22:03:03.427 回答
0

试试这个,你可以在这里下载工作示例;

jQuery Blueimp 文件上传器

于 2013-06-08T07:04:06.920 回答