- VKSession.start无法调起摄像头?
微信8.0.42 OPPO k7x taro@3.6.18 使用官方文档OCR摄像头实时监测的示例代码测试(文档链接:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/visionkit/ocr.html) 点击执行后提示授权摄像头权限,同意后在点击执行 代码会执行到 session.start里面,但是界面没有任何反应,摄像头无法调起,代码也没有报错, const session = wx.createVKSession({ track: { OCR: { mode: 1 } // mode: 1 - 使用摄像头;2 - 手动传入图像 }, }) // 摄像头实时检测模式下,监测到人脸时,updateAnchors 事件会连续触发 (每帧触发一次) session.on('updateAnchors', anchors => { anchors.forEach(anchor => { console.log('anchor.points', anchor.points) console.log('anchor.origin', anchor.origin) console.log('anchor.size', anchor.size) console.log('anchor.angle', anchor.angle) }) }) // 当人脸从相机中离开时,会触发 removeAnchors 事件 session.on('removeAnchors', () => { console.log('removeAnchors') }) // 需要调用一次 start 以启动 session.start(errno => { if (errno) { // 如果失败,将返回 errno } else { // 否则,返回null,表示成功 } })
2023-10-31 - taro中,配置__usePrivacyCheck__报错?
基础库版本为3.0.1,在taro的app.config.ts中配置了__usePrivacyCheck__: true,但出现报错。 [图片] 之后调用getPrivacySetting,返回了undefined [图片] [图片]
2023-08-30 - 反馈wps平台授权插件申请
申请已经两天还没有通过,预计得多久呀?
2023-06-08