我希望resumable.js(文件上传器)只打开特定文件类型的文件选择器,如mp4或mp3。
如何为resumable.js上传器指定文件类型?
答案 0 :(得分:3)
您可以在documentation中看到fileType
选项。 fileType
默认为[]
,但在您的情况下应为fileType: ['mp3', 'mp4']
。
var resumable = new Resumable({
...
fileType: ['mp3', 'mp4'],
...
});
中看到一个有效的例子