我对编码还很陌生,并在网上在线学习了有关如何使用画布进行图像处理的教程,但是我遇到了这个错误,很抱歉!感谢您的帮助
if (message.author.bot) return;
msg = message.content.toLowerCase();
if(msg.includes("test")) {
const sayMessage = message.content.split(' ').slice(2).join(' ')
const canvas = Canvas.createCanvas(700, 250);
const ctx = canvas.getContext('2d');
const background = await Canvas.loadImage('./wallpaper.jpg');
ctx.drawImage(background, 0, 0, canvas.width, canvas.height);
ctx.strokeStyle = '#74037b';
ctx.strokeRect(0, 0, canvas.width, canvas.height);
ctx.font = applyText(canvas, sayMessage);
ctx.fillStyle = '#ffffff';
ctx.fillText(sayMessage, canvas.width / 2.5, canvas.height / 1.8);
ctx.beginPath();
ctx.arc(125, 125, 100, 0, Math.PI * 2, true);
ctx.closePath();
ctx.clip();
const avatar = await Canvas.loadImage(member.user.displayAvatarURL({ format: 'jpg' }));
ctx.drawImage(avatar, 25, 25, 200, 200);
const attachment = new Discord.MessageAttachment(canvas.toBuffer(), 'test.png');
channel.send(attachment);
}
答案 0 :(得分:5)
错误确切地说。您要在其中等待其他任何功能的功能必须是异步功能。
例如:
async function wait() {
await somefunction() // correct because function is async
}
但是
function wait() {
await somefunction() // error
}
答案 1 :(得分:2)
您很可能需要在您的 .onMessage 事件中添加一个async
。它应该看起来像这样:
bot.on('message', async message => {
//do your commands here
})
请注意async
前的message => {}
。
这就是允许您在onMessage事件中使用 await 的原因。