我一直在尝试修改以下小提琴:
小提琴
我正在尝试获得此功能:
1>用户点击选择图像按钮,文件上传(现在工作)
2> 用户再次点击选择图像按钮,现有文件被替换为新文件。
3> 用户点击删除按钮,文件被删除。
我正在努力弄清楚如何做到这一点。代码如下所示:
$(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();
});
我试过这个。您走在正确的道路上,但看起来您正在删除队列中已经有一个文件时添加的文件。你也不想在 uploader.files.length> 1 时"返回"。这会带您脱离"每个",其余代码没有运行。
第三部分是删除文件。为此,我已经绑定了按钮单击事件以删除文件。
这是一个小提琴。
这里有一些相关的代码片段。
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 或将其从列表中拼接等。