我使用filereader上传图片。我写了一张支票来确定文件的类型。我想只允许下载图像类型。但它无法正常工作。有人可以帮忙吗?
有我的代码
if (file.type) {
var photoType = /image.*/;
if (file.type !== photoType) {
callback(
null,
"File not supported! Try to upload another image"
);
return;
}
}