这对我来说很奇怪。我正在尝试使用这个插件,周五我看到它完全没问题。
但我不知道发生了什么...... onComplete事件没有触发。我已经测试了几种定义它的方法,这些方法:
var fineUploader = $('#fineUploader');
fineUploader.fineUploader({
request:{
endpoint: '/wp-content/plugins/innovation-factory/includes/php/endpoint.php'
},
callbakcs:{
onComplete: function(id, name, responseJSON, xhr){
console.log(responseJSON);
debug.log({
_id: id,
_name: name,
_responseJSON: responseJSON,
xhr
});
}
},
onComplete: function(id, name, responseJSON, xhr){
console.log(responseJSON);
debug.log({
_id: id,
_name: name,
_responseJSON: responseJSON,
xhr
});
}
});
fineUploader.on('onComplete', function(id, name, responseJSON, xhr){
console.log(responseJSON);
debug.log({
_id: id,
_name: name,
_responseJSON: responseJSON,
xhr
});
});
我已经逐一分别测试了这三种方式。
我做错了什么?
PD:控制台没有错误,文件保存正确......
答案 0 :(得分:0)
您的代码问题只是由于您拼写"回调"错误。如果您修复了拼写错误,问题就会消失。