更新记录
1.0.0(2021-06-11)
下载此版本
首次提交
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.13 app-vue |
√ |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
```html
上传压缩
```javascript
<script>
export default {
data() {
return {
}
},
methods: {
//压缩成功后返回
resimg(e){
console.log(666,e)
},
slectimg(){
uni.chooseImage({
count: 1, //默认9
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
sourceType: ['album','camera'], //从相册,相机选择
success:(res)=> {
console.log(res.tempFilePaths);
this.$refs.imgcom.getImageInfo(res.tempFilePaths[0])
// this.getImageInfo(res.tempFilePaths[0])
}
});
}
}
}
</script>