jQuery Plupload restrict number of uploads

前端 未结 2 1054
再見小時候
再見小時候 2020-12-06 02:43

I have been working on this code for some time now trying to get it to work properly. I want to restrict the use from uploading more that 2 images in total.

The li

相关标签:
2条回答
  • 2020-12-06 03:10

    Good answer jbl. I tweaked your solution a bit to make it more generic, and to make the 'Add files' button reappear when needed.

    uploader.bind('FilesAdded', function(up, files) {
      if (up.files.length >= up.settings.max_files) {
        up.splice(up.settings.max_files);
        $(up.settings.browse_button).hide();
      }
    });
    
    uploader.bind('FilesRemoved', function(up, files) {
      if (up.files.length < up.settings.max_files) {
        $(up.settings.browse_button).show();
      }
    });
    

    max_files is part of the pluploadQueue settings

    $("#uploadBox").pluploadQueue({
      ...
      max_files: 2,
      ...
    });
    
    0 讨论(0)
  • 2020-12-06 03:25

    What you want to achieve in the while (i<=upa.files.length) { block is not clear to me. Seems like you have several uploaders on your page, but I can't grasp the idea.

    Anyway, I guess this should do the trick, as to restrict to 2 files max in a single uploader.

    FilesAdded: function(up, files) {
                        var maxfiles = 2;
                        if(up.files.length > maxfiles )
                         {
                            up.splice(maxfiles);
                            alert('no more than '+maxfiles + ' file(s)');
                         }
                        if (up.files.length === maxfiles) {
                            $('#uploader_browse').hide("slow"); // provided there is only one #uploader_browse on page
                        }
                    },
    

    Hope this will help

    0 讨论(0)
提交回复
热议问题