为什么我在fileUpload config
中使用add时看不到模板上传添加选项add:function(){}
时不起作用
$('#formpublicacion').fileupload({
dataType: 'json',
url: 'publicaciones/',
add: function (e, data){
$("#publicar").on('click', function () {
data.submit();
});
},
});
答案 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;