我的机型是小米5sp,微信版本是6.7.2,我的代码片段是官方那个打飞机DEMO里面改的(但是打飞机就正常运行),代码片段是 let ctx = canvas.getContext('2d') export default class Main { constructor() { this.ctx=ctx this.start() } start() { this.loop() } update() { } render() { this.ctx.fillStyle = 'red' this.ctx.fillRect(50, 50, 100, 100) } loop() { this.update() this.render() window.requestAnimationFrame(this.loop.bind(this), canvas) } }
2d绘图电脑调试与真机(出现异常)不同微信开发工具中的演示: [图片] 真机中的演示: [图片] 真机调试没有报错,型号是小米5sp
2018-09-29