我如何使用附件@here?
How do I @here with an attachment?
我正在尝试使用 canvas 发出 say 命令以输出带有@here 提及的图像,但该命令只显示图像而没有提及。
我尝试过的:
message.channel.send(`@here\n`+attachment);
用,
分隔消息内容和附件。
你可以只使用这个:
message.channel.send("@here", {
files: ["./yourfile.txt"],
});
另外请记住,discord 总是会立即在聊天中显示图像,而不仅仅是文件。这是正常的 Discord 行为。这就像您从用户帐户发送图像一样。您无法使用 discord.js.
更改它
我正在尝试使用 canvas 发出 say 命令以输出带有@here 提及的图像,但该命令只显示图像而没有提及。 我尝试过的:
message.channel.send(`@here\n`+attachment);
用,
分隔消息内容和附件。
你可以只使用这个:
message.channel.send("@here", {
files: ["./yourfile.txt"],
});
另外请记住,discord 总是会立即在聊天中显示图像,而不仅仅是文件。这是正常的 Discord 行为。这就像您从用户帐户发送图像一样。您无法使用 discord.js.
更改它