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

时间:2016-02-02 02:57:23

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

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

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

1 个答案:

答案 0 :(得分:3)

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

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

您可以在https://jsfiddle.net/atomic/wn2uq53d/2/

中看到一个有效的例子