环境:
微信小程序 使用webview内嵌H5网页
问题:
在安卓机型下无法调起uni.chooseImage。
uni.chooseImage({
count: 3,
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
sourceType: ['album'], //从相册选择
success: (res) => {
console.log('选择',res)
},fail(err){
uni.showToast({
title: err+'图片类型错误,请重新选择',
icon: 'none'
});
}
});
使用微信jssdk调用chooseImage无法使用
this.$wbjwx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success (res) {
// tempFilePath可以作为img标签的src属性显示图片
const tempFilePaths = res.tempFilePaths
}
})
1***@qq.com
请问解决了吗?
2022-07-21 15:55