uni-appH5(uni.chooseFile uni.chooseImage)限制图片类型

uni-app限制图片类型

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
}
 

 

 
posted @ 2021-02-07 10:03  yoona-lin  阅读(5824)  评论(5编辑  收藏  举报