- 华为Mate40手机和荣耀30Pro,通过wx.chooseMessageFile选择微信图片破损
[图片] 华为荣耀手机30Pro和华为Mate40,在小程序选择微信聊天记录的某些特定图片的时候,调用 wx.chooseMessageFile 然后返回的文件列表里面的文件大小远小于图片实际大小,即返回的图片文件就是破损状态,导致图片上传到阿里云就是个破损文件。
09-18 - 小程序单元测试引入文件的问题?
我在小程序单元测试文件里面按照官方文档引入了 miniprogram-simulate,引入文件的时候,可以引用到,但是 render 的时候返回 undefined,怎么解决呢 const simulate = require('miniprogram-simulate'); const path = require('path'); test('page/main/index', () => { const id = simulate.load(path.join(__dirname, xxx)) const comp = simulate.render(id, { propName: 'propValue', }); console.log('comp', comp); // const parent = document.createElement('parent-wrapper'); // comp.attach(parent); // const that = comp.instance; // console.log('测试数据 data', that.data); })
2023-07-07