小程序
小游戏
企业微信
微信支付
扫描小程序码分享
有位帮忙解答一下,扫条码可以一直在扫描页面存在,不退出来,可以一直连续扫描,并累计数字
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/miniprogram/dev/component/camera.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
据我所知,2.1.0的库<camera/>支持一维码识别,并返回结果。
好的,谢谢,可以用了
相机有退出的概念吗?
能看到图像,但是无法识别,是因为在开发者工具不是真机的原因吗?
<
view
class
=
"page-body"
>
"page-body-wrapper"
camera
mode
"scanCode"
device-position
"back"
binderror
"error"
style
"width: 100%; height: 300px;"
bindscancode
"takeCode"
></
</
Page({
onLoad() {
this
.ctx = wx.createCameraContext()
},
takeCode(res) {
console.log(res);
error(e) {
console.log(e.detail)
}
})
你在开发者工具上测试能用吗?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/miniprogram/dev/component/camera.html
据我所知,2.1.0的库<camera/>支持一维码识别,并返回结果。
好的,谢谢,可以用了
相机有退出的概念吗?
能看到图像,但是无法识别,是因为在开发者工具不是真机的原因吗?
<
view
class
=
"page-body"
>
<
view
class
=
"page-body-wrapper"
>
<
camera
mode
=
"scanCode"
device-position
=
"back"
binderror
=
"error"
style
=
"width: 100%; height: 300px;"
bindscancode
=
"takeCode"
></
camera
>
</
view
>
</
view
>
Page({
onLoad() {
this
.ctx = wx.createCameraContext()
},
takeCode(res) {
console.log(res);
},
error(e) {
console.log(e.detail)
}
})
你在开发者工具上测试能用吗?