摘要:
uni-app限制图片类型 uni.chooseFile uni.chooseImage() //限制图片类型以及过滤git图let resType = res.tempFiles[0].type.substring(0,5)if(resType!='image' || res.tempFiles[ 阅读全文
摘要:
uni-app图片大小限制大小20m uni.chooseFile uni.chooseImage() 1M=1024KB=1048576B,20M 等于20480KB 等于20971520B但是一般说的时候都是忽略了1024中的24,直接使用的1M=1000KB整算。 //限制上传的图片大小不超 阅读全文