discord.js v12 中的参数未完全显示

Argument is not fully displayed in discord.js v12

我的参数没有完全显示。它只发送第一个字。我不知道该尝试什么。这是我要解决的问题:输入: Output: And here is a hastebin with my code: https://hastebin.com/okayobanuz.js

你的代码说 const comment = args[1]; 只有一个词,你需要使用 const comment = args.slice(1).join(" "); 来获得完整的参数