getSystemInfo这个接口返回的数据中有一项是benchmarkLevel,官方介绍是设备性能等级,不知道能否作为划分的依据
请教一下,微信性能界面高端机,中端机,低端机如何区分?想针对低端机做性能优化如题 [图片]
2021-10-22楼主解决了吗?是什么原因?
canvas 2d getContext 会无法获取到吗?最近使用了 Canvas 2D https://developers.weixin.qq.com/miniprogram/dev/component/canvas.html https://developers.weixin.qq.com/miniprogram/dev/api/canvas/RenderingContext.html 这样一段代码,发现在本地运行是好的,但是总是有报警 Cannot read property 'scale' of undefined;at SelectorQuery callback function,这是为啥呢 canvas.getContext('2d') 文档也没说这个什么时候会获取不到 context const query = this.createSelectorQuery(); query.select('#canvas-id') .fields({ node: true, size: true }) .exec((res) => { if (res && res[0] && res[0].node) { const canvas = res[0].node; const ctx = canvas.getContext('2d'); ctx.scale(2, 2); } });
2020-09-22