- 基础库2.27.0, 使用VisionKit静态图像OCR检测为什么需要授权摄像头呢?
const session = wx.createVKSession({ track: { OCR: { mode: 2 } // mode: 1 - 使用摄像头;2 - 手动传入图像 }, version: 'v1' }) session.start(); // 弹出授权摄像头权限 代码中的参数并没有使用到摄像头 为什么会要求授权摄像头呢?
2022-10-25 - 服务端接口请求有限制QPS吗?
我们下午突然出现了很多接口请求错误, 原来都好好的, 不过我们请求量是增加了不少. 提示信息: 12002: HttpClient Timeout(30000): GET https://api.weixin.qq.com/sns/jscode2session?appid=wx349100408516a755&secret=11111&js_code=222222&grant_type=authorization_code Error: socket hang up appid: wx349100408516a755 我强制host了api.weixin.qq.com的IP为:101.89.47.18 就可以了. 是不是api.weixin.qq.com的部分网关有问题呀?
2022-10-07 - 为什么现在接口调用,都没有平台上公告了, 只在社区中发通知? 我们哪能天天在社区灌水呀?
为什么现在接口调用,都没有平台上公告了, 只在社区中发通知? 开发工具也没有推消息的? 我们哪能天天在社区灌水呀? [图片] 下面是社区公告 [图片] [图片] 我们最近几次接口调整,都掉坑里了.
2022-04-29 - 为什么我和我的同事的通知中心都是空的? 还有小程序官方公告除了在社区这边, 开发工具能收到吗?
为什么我和我的同事的通知中心都是空的? [图片] 还有小程序官方公告除了在社区这边, 开发工具能收到吗? 并且也不会在小程序平台的消息中心中通知! 最近两次的接口调整: 小程序链接生成与使用规则调整公告, https://developers.weixin.qq.com/community/develop/doc/000aeab88a4ea0c5c89d81fde5b801?blockType=1小程序地理位置相关接口调整, https://developers.weixin.qq.com/community/develop/doc/000e8ccb5ac498318cbd26c495bc01?blockType=1严重影响我们的用户使用了. 昨晚刚好一个重要的BUG要修复,现在还没办法发布.
2022-04-29 - 学生的安全教育内容, 为什么会被识别为有风险的?
[图片] 这里面是哪里有存在敏感内容?
2022-04-23 - miniprogram-automator的restoreWxMethod好像无效呀?
先贴上代码: const automator = require('miniprogram-automator'); automator.connect({ wsEndpoint: 'ws://localhost:4444', }). then((miniProgram) => { return miniProgram.reLaunch('/pages/index/index'). then(async () => { console.log("mock before: ", await miniProgram.callWxMethod('getStorageSync', 'test')) // -> '' await miniProgram.mockWxMethod('getStorageSync', 'mockValue') console.log("mock after: ", await miniProgram.callWxMethod('getStorageSync', 'test')) // -> 'mockValue' await miniProgram.restoreWxMethod('getStorageSync') console.log("restore after: ", await miniProgram.callWxMethod('getStorageSync', 'test')) // -> '' }). then(() => miniProgram?.disconnect()). then(() => null); }). catch((error) => { console.log("Test error:", error); }); 运行结果是: 第一次运行: mock before: mock after: mockValue restore after: mockValue 之后每次运行: mock before: mockValue mock after: mockValue restore after: mockValue 说明一下: 重新编译后,就恢复第一次的了。可能是connect的方式,之前的mock不会丢失,包括其它对小程序环境产生影响的都不会恢复。不使用launch是因为,每次都启动一下IDE,太慢了。
2021-10-15 - 能不能通过miniprogram-automator传个文件进小程序?
能不能通过miniprogram-automator传个文件进小程序?
2021-10-08 - miniprogram-automator怎么测试打开和上传文件?
miniprogram-automator 没找到文件上传相关接口和文档。 百度也没有任何资料。 谁用miniprogram-automator测试上传文档过? 给个例子或思路,先谢了!
2021-10-06 - 最近有一些用户经常会出现网络请求问题, 基础库都是2.16.0的, 是怎么回事?
前后有几十个用户出现网络请求问题, 从反馈的数据和错误日志里看, 出问题的都是2.16.0基础库的. 反馈的日志里, 网络错误有这些: request:fail -111:net::ERR_TUNNEL_CONNECTION_FAILED request:fail interrupted request:fail -103:net::ERR_CONNECTION_ABORTED request:fail -118:net::ERR_CONNECTION_TIMED_OUT 这个是怎么回事? 我们要怎么解决?
2021-04-13 - Cannot read property 'model' of undefined 有人能重现码?
大量的这个错误: Cannot read property 'model' of undefined TypeError: Cannot read property 'model' of undefined at B.value (<anonymous>:2:3180660) at B.value (<anonymous>:2:3180270) at <anonymous>:2:3183780 at A.success (<anonymous>:2:3184766) at C (<anonymous>:2:121411) at Object.success (<anonymous>:2:122236) at Q (<anonymous>:2:1840011) at d (<anonymous>:2:1840254) at <anonymous>:2:1841688 at Object.s (<anonymous>:2:77787) [图片] 我看社区里有不少这个问题的贴子. 有人能重现这个错误码? 麻烦答复一下, 也好做排查.
2021-01-14