更新记录
1.0.0(2023-11-18)
下载此版本
发布
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
× |
√ |
√ |
√ |
qr-code-parsing 二维码解析(识别)
示例说明
默认 (可传入图片、chooseImage 选择图片相册及照相机)
<qr-code-parsing @callback="deCodeCallback" :awm-file-path="awmFilePath"></qr-code-parsing>
<script>
export default {
data() {
return {
awmFilePath: '../../static/qrcode.png',
}
},
methods: {
deCodeCallback(code) {
console.log(code)
}
}
}
</script>
参数
deCodeCallback 解码回调
awmFilePath 默认图片
自定义 (可传入图片、chooseImage 选择图片相册及照相机)
<qr-code-parsing ref="qrCodeParsing" :awm-file-path="awmFilePath" @callback="deCodeCallback" :isCustom="true">
<view class="box">
<view class="qrcode">
<image :src="awmFilePath" mode="aspectFit" @click="camera" />
</view>
<button class="btn" @click="deCode">解码</button>
</view>
</qr-code-parsing>
<script>
export default {
data() {
return {
awmFilePath: '../../static/qrcode.png',
}
},
methods: {
deCodeCallback(code) {
console.log(code)
},
camera() {
uni.chooseImage({
count: 1,
success: res => {
this.awmFilePath = res.tempFilePaths[0];
}
})
},
deCode() {
this.$refs.qrCodeParsing.deCode(this.awmFilePath)
}
}
}
</script>
参数
isCustom 是否自定义Boolean
deCodeCallback 解码回调
awmFilePath 默认图片