确定文件的类型

时间:2017-07-18 08:01:13

标签: javascript angularjs image-uploading filereader

我使用filereader上传图片。我写了一张支票来确定文件的类型。我想只允许下载图像类型。但它无法正常工作。有人可以帮忙吗?

有我的代码

if (file.type) {
   var photoType = /image.*/;
   if (file.type !== photoType) {
       callback(
           null,
           "File not supported! Try to upload another image"
       );

       return;
   }
}

0 个答案:

没有答案