export class Main {
constructor() {
this.canvas = wx.createCanvas();
this.ctx = this.canvas.getContext("2d");
var image = wx.createImage();
image.src = "res/bg.png";
image.onload = () => {
this.ctx.drawImage(
image,
0,
0,
image.width,
image.height,
0,
0,
this.canvas.width,
this.canvas.height,
);
};
}
}
关闭小游戏,重新打开后出现黑屏?大神速进。
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,这个问题怎么解决的呢,我也遇到了
我也遇到这个问题,你的解决没有呀