uni-appH5(uni.chooseFile uni.chooseImage)限制图片类型
uni.chooseFile
uni.chooseImage()
//限制图片类型以及过滤git图
let resType = res.tempFiles[0].type.substring(0,5)
if(resType!='image' || res.tempFiles[0].type.substring(6,7) == 'g'){
uni.showToast({
title: "限制图片类型以及过滤git图",
icon: 'none',
duration: 2000,
mask: true
});
return
}