- 小程序打开后,立马跳转到同公司主体下另一个小程序内
生产环境下,从没使用过的用户打开z快小程序appid:wx8dad6bbefb82f6c9后,立马跳转至三松AI小程序appid:wxe9deca7b99ea809f 去了,包括分享z快小程序给好友,好友打开也是三松AI小程序
02-27 - 微信小程序VKSession.runOCR启动闪退
const session = wx.createVKSession({ track: { OCR: { mode: 2 } // mode: 1 - 使用摄像头;2 - 手动传入图像 }, version: 'v1' }); // 静态图片检测模式下,每调一次 runOCR 接口就会触发一次 updateAnchors 事件 session.on('updateAnchors', (anchors) => { uni.showToast({ icon: 'none', title: ''.concat(anchors.map((anchor) => anchor.text)) }); console.log('anchors.text', ''.concat(anchors.map((anchor) => anchor.text))); }); // 需要调用一次 start 以启动 session.start((errno) => { if (errno) { // 如果失败,将返回 errno console.log(errno, '检测失败'); } else { // 否则,返回null,表示成功 uni.showToast({ icon: 'none', title: '检测启动中' }); session.runOCR({ frameBuffer: arrayBuffer, // 图片 ArrayBuffer 数据。待检测图像的像素点数据,每四项表示一个像素点的 RGBA width: that.ocrImg.width, // 图像宽度 height: that.ocrImg.height // 图像高度 }); } }); },
2023-10-18 - VKSession.start真机调试2000004,使用预览功能小程序闪退?
使用真机调试VKSession.start出现20000004,再用开发者工具使用预览功能,小程序直接闪退?
2023-10-18 - 视觉算法VKSession.start真机调用2000004,使用预览小程序闪退
const that = this; uni.chooseImage({ count: 1, success: function (res) { // 获取到相册的一张图片的本地路径 const path = res.tempFilePaths[0]; // 获取图片信息 uni.getImageInfo({ src: path, success: (imageInfo) => { // 压缩图片 console.log(imageInfo, 135); that.ocrImg = imageInfo; uni.getFileSystemManager().readFile({ filePath: path, encoding: 'binary', success: (readFileRes) => { const arrayBuffer = readFileRes.data; console.log('开始检测'); const session = wx.createVKSession({ track: { OCR: { mode: 2 } // mode: 1 - 使用摄像头;2 - 手动传入图像 } }); // 静态图片检测模式下,每调一次 runOCR 接口就会触发一次 updateAnchors 事件 session.on('updateAnchors', (anchors) => { console.log('anchors.text', ''.concat(anchors.map((anchor) => anchor.text))); }); // 需要调用一次 start 以启动 session.start((errno) => { if (errno) { // 如果失败,将返回 errno console.log(errno, '检测失败'); } else { // 否则,返回null,表示成功 session.runOCR({ frameBuffer: arrayBuffer, // 图片 ArrayBuffer 数据。待检测图像的像素点数据,每四项表示一个像素点的 RGBA width: that.ocrImg.width, // 图像宽度 height: that.ocrImg.height // 图像高度 }); } }); }, fail: (readFileError) => { console.error('读取本地文件失败', readFileError); reject(readFileError); } }); } }); } });
2023-10-18