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
}
 

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM