我正在使用Blueimp jQuery文件上传插件,我的配置是:
$('#fileupload').fileupload({
// Uncomment the following to send cross-domain cookies:
//xhrFields: {withCredentials: true},
url: 'assets/plugins/jquery-file-upload/server/php/',
done: function (e, data) {
//some code
}
});
当一个文件上传完成后,我需要在done:
事件中的列表中隐藏此文件,但我无法在队列列表中获取此文件的索引。
有什么想法吗?
答案 0 :(得分:2)
找到关于我的问题的解决方案。
jQuery Fileupload
返回done
事件的数据,其中包含每个上传线程的context
参数,该参数与DOM元素相关,可用于隐藏在我的情况中的任何操作:< / p>
$('#fileupload').fileupload({
// Uncomment the following to send cross-domain cookies:
//xhrFields: {withCredentials: true},
url: 'assets/plugins/jquery-file-upload/server/php/',
done: function(e, data) {
//hide completed upload element in queue
$(data.context['0']).fadeOut(700);
//here isoutput of uploaded objects
console.log(data.result);
}
});