【问题标题】:How to specify a file type for resumable.js uploader?如何为 resumable.js 上传器指定文件类型?
【发布时间】:2016-05-10 17:08:54
【问题描述】:

我希望resumable.js(文件上传器)仅打开特定文件类型的文件选择器,例如 mp4 或 mp3。

如何为 resumable.js 上传器指定文件类型?

【问题讨论】:

    标签: javascript file-upload fileapi resume-upload resumablejs


    【解决方案1】:

    您可以在documentation 中看到fileType 选项。 fileType 默认为[],但在您的情况下应为fileType: ['mp3', 'mp4']

    var resumable = new Resumable({
      ...
      fileType: ['mp3', 'mp4'],
      ...
    });
    

    您可以在https://jsfiddle.net/atomic/wn2uq53d/2/ 中看到一个工作示例

    【讨论】:

      猜你喜欢
      • 2019-03-16
      • 1970-01-01
      • 2015-10-22
      • 2015-05-30
      • 2022-08-21
      • 2011-11-11
      • 1970-01-01
      相关资源
      最近更新 更多