Plupload - Restrict to only one file

后端 未结 13 1020
攒了一身酷
攒了一身酷 2021-02-02 10:15

I don\'t see an option in the plupload API docs on restricting the number of files uploaded, to any number, even 1.

Doc fail? or Feature fail? If it doesn\'t exist I\'ll

13条回答
  •  一整个雨季
    2021-02-02 10:59

    Other way to do this:

     $(document).ready(function () {
        var uploader = new plupload.Uploader({
            ...
            multi_selection: false,
           ....
         });
    

    Regards

提交回复
热议问题