- 执行VKSession.runOCR后,为什么没有收到识别回调?
如下代码 this.session = wx.createVKSession({ track: { OCR: { mode: 2 } }, version: 'v1', }); this.session.on('updateAnchors', anchors => { console.log(TAG, 'init VisionKit updateAnchors', JSON.stringify(anchors)); anchors.map((anchor) => { console.log('init VisionKit updateAnchors text', anchor.text); }); }) this.session.start(errno => { logger.info(TAG, 'init VisionKit error:', errno); if (errno) { return; } }); this.session?.runOCR({ frameBuffer: this.imgData.data.buffer, width: this.data.ocrImgOriginWidth, height: this.data 如标题所描述:拍照或者返回照片后,进行ocr识别,没有反应, 微信版本:8.0.32 小程序基础库版本:2.30.0, 但是同样的代码,微信版本降级到8.0.28后,对应的小程序库版本是2.27.3,这段代码就可以识别出文字, 请大神帮忙看下是什么原因?
2023-01-30 - 视频号商品进入小程序页面,button 分享按钮提示 暂时不支持当前功能 是何原因?
从视频后点击进入的页面如下图,点击的按钮为图中红框中的位置 [图片] 在视频号主页商品tab下点击进入小程序页面后,点击上图的分享button后,会提示“暂不支持当前功能”,而在其它场景下进入该页面时是可以正常分享的,请教专家给指出问题发生的原因和解决方案 代码如下: <button open-type="share">分享</button>
2022-11-15 - 实时日志经常出现“UserLog:fail Log Size xxx Exceed.”是什么原因?
实时日志,经常出现“UserLog:fail Log Size xxx Exceed.”是什么原因?
2022-11-09