- 主页用到canvas 不支持真机调试?
[图片] 是不是意味着 主页用到canvas 审核是过不去的 因为我主页是这个 审核说 我页面加载不出来没内容。 导致审核不过去 但是我体验版里加载是完全没问题的
2020-07-06 - 真机调试HTMLCanvasView is not defined?
2.11.3 开发工具版本1.03.2006090 开发预览都没问题就是真机调试 出错 导致页面加载不出来。审核过不去。体验版完全没问题。[图片] <canvas canvas-id="11" type="2d" id ="myCanvas" style='width:{{canvasWidth}}px; height:{{canvasHeight}}px' bindtouchstart='touchStart' bindtouchmove='touchMove' bindtouchend='touchEnd' disable-scroll='true' force-use-old-canvas="true" ></canvas> wx.createSelectorQuery() .select('#myCanvas') .fields({ node: true, size: true, }) .exec(this.init.bind(this)) init(res){ const that = this const width = res[0].width const height = res[0].height const canvas = res[0].node const ctx = canvas.getContext('2d') const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = width * dpr canvas.height = height * dpr ctx.scale(dpr, dpr) const renderLoop = () => { this.render(canvas, ctx) canvas.requestAnimationFrame(renderLoop) } canvas.requestAnimationFrame(renderLoop) },
2020-07-06