不要使用add:jqueryfileupload config查看模板上传

时间:2014-10-29 21:04:40

标签: jquery-file-upload

为什么我在fileUpload config

中使用add时看不到模板上传

添加选项add:function(){}

时不起作用

$('#formpublicacion').fileupload({
	dataType: 'json',
	url: 'publicaciones/',
	add: function (e, data){
	$("#publicar").on('click', function () {
       data.submit();
   	});
  },
});

1 个答案:

答案 0 :(得分:0)

我替换为此代码



$('#fileupload').fileupload({
    dataType: 'json',
    add: function (e, data) {
        var that = this;
      //add this line
	    $.blueimp.fileupload.prototype.options.add.call(that, e, data);
        $("#up_btn").on('click', function () {
            data.submit();
        });
    },
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
&#13;
&#13;
&#13;