我有以下小提琴,我一直试图修改:
我正在努力获得此功能:
1>用户点击选择图像按钮并上传文件(现在正在工作)
2 - ;用户再次单击选择图像按钮,现有文件将替换为新文件
3 GT;用户单击删除按钮,文件将被删除。
我正在努力解决如何做到这一点。代码如下所示:
$(document).ready(function() {
var uploader = new plupload.Uploader({
runtimes : 'html5,flash,silverlight',
browse_button : 'pick-files',
max_file_size : '1mb',
multi_selection: false,
max_file_count: 1,
unique_names : true,
autostart: true,
url: "/echo/json",
flash_swf_url : 'http://rawgithub.com/moxiecode/moxie/master/bin/flash/Moxie.cdn.swf',
silverlight_xap_url : 'http://rawgithub.com/moxiecode/moxie/master/bin/silverlight/Moxie.cdn.xap',
filters : [
{title : "Image files", extensions : "jpg,png"}
],
init: {
PostInit: function() {
document.getElementById('pick-files').style.visibility = 'visible';
},
FilesAdded: function(up, files) {
plupload.each(files, function(file) {
if(uploader.files.length > 1){
//uploader.removeFile(uploader.getFile(this.id));
console.log(file.id);
// return;
}
var img = new o.Image();
img.onload = function() {
// create a thumb placeholder
var li = document.createElement('li');
li.id = this.uid;
document.getElementById('gallery').appendChild(li);
// embed the actual thumbnail
this.embed(li.id, {
width: 100,
height: 60,
crop: true
});
};
img.load(file.getSource());
});
},
Error: function(up, err) {
document.getElementById('console').innerHTML += "\nError #" + err.code + ": " + err.message;
}
}
});
uploader.init();
});
答案 0 :(得分:2)
我对此有所了解。您在正确的路径上,但看起来您正在删除队列中已有文件时添加的文件。当uploader.files.length>你也不想“返回”。 1.这会让你离开“每个”,其余代码没有运行。
第三部分是删除文件。为此,我绑定了按钮click事件以删除文件。
这是Fiddle。
这里有一些相关的代码片段。
FilesAdded: function(up, files) {
plupload.each(files, function(file) {
if(uploader.files.length > 1){
removeImage(); //Call the removeImage() function and then continue
}
然后删除图像,这就是我所做的。
uploader.init(); //<-- After initialising
document.getElementById('remove').onclick = function () {
removeImage();
};
function removeImage(){
if(uploader.files.length > 0){
uploader.removeFile(uploader.files[0].id);
document.getElementById('gallery').innerHTML = ''; //This will remove it from the page
}
}
这只是为了快速删除它,只有一张图片。可能有更好的方法来重置库,但我发现只是调用removeFile不会从页面中删除它,你需要重置innerHTML或从列表中拼接它等。