admin管理员组文章数量:1343350
I'm trying to remove files with not allowed extensions on the FilesAdded event. (I can't use the filter parameter as I need an exclusive list).
I have some code a bit like this:
uploader.bind('FilesAdded', function(up, files) {
var count = files.length;
var i = 0;
for (i;i<count;i++) {
var validExt = validate(files[i].name);
if(!validExt){
I need to remove the files added if the extensions aren't valid. I've tried the following:
uploader.splice(i,1)
uploader.removeFile(files[i]);
uploader.refresh();
The FilesRemoved event is fired, but removed files still get uploaded with uploader.start().
I don't know if this is a bug in the program, or too obscure to expect an easy answer to, but if anyone can help, I'd be really grateful. I don't think I'm missing anything obvious.
Thanks.
I'm trying to remove files with not allowed extensions on the FilesAdded event. (I can't use the filter parameter as I need an exclusive list).
I have some code a bit like this:
uploader.bind('FilesAdded', function(up, files) {
var count = files.length;
var i = 0;
for (i;i<count;i++) {
var validExt = validate(files[i].name);
if(!validExt){
I need to remove the files added if the extensions aren't valid. I've tried the following:
uploader.splice(i,1)
uploader.removeFile(files[i]);
uploader.refresh();
The FilesRemoved event is fired, but removed files still get uploaded with uploader.start().
I don't know if this is a bug in the program, or too obscure to expect an easy answer to, but if anyone can help, I'd be really grateful. I don't think I'm missing anything obvious.
Thanks.
Share Improve this question edited Jan 12, 2012 at 21:01 stackuser10210 asked Jan 12, 2012 at 20:53 stackuser10210stackuser10210 3521 gold badge6 silver badges11 bronze badges5 Answers
Reset to default 5A few things...
1st you have to bind the filesAdded event after calling the init() function.
uploader.init();
uploader.bind('FilesAdded', function (up, files) {...}
2nd you can filter the files extension using the prop filters when defining plupload
uploader = new plupload.Uploader({
...,
filters: [
{ title: "Image files", extensions: "jpeg,jpg,gif,png" }
],
...
});
3rd here's a working sample to remove files from plupload
$.each(uploader.files, function (i, file) {
if (file && file.id != currentFile.id) {
uploader.removeFile(file);
}
});
Cheers!
When there is no upload progress and you want to remove all queued files from uploader list:
var queueLength = uploader.files.length;
for (i = 0; i < queueLength; i++) {
if (uploader.files[0] && uploader.files[0] !== undefined) {
uploader.removeFile(uploader.files[0]);
}
}
Note: If you try to remove files by index, some files are left in the list; because every time a file item is removed from the list, it is refreshed and indexes are resorted.
You need to pass the id of the file you want to remove to removeFile:
uploader.removeFile(files[i].id)
You can use callback "QueueChanged", it works for me as well.
uploader.bind('QueueChanged', function(up){
var file_count = up.files.length;
for(i = 0; i < file_count; i++) {
if(i != (file_count - 1)) up.removeFile(up.files[i]);
}
});
uploader.bind('FilesAdded', function(up, files) {
if( files.length > 1 )
{
$.each(files, function(i, file) {
up.removeFile(file);
});
}
});
本文标签: javascriptplupload removeFilesStack Overflow
版权声明:本文标题:javascript - plupload removeFiles - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743705226a2525001.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论