如何检查消息是否包含其他内容?

时间:2021-07-22 21:29:16

标签: javascript node.js discord.js

基本上,您的消息包含“Will”一词。我想检查消息是否包含 will 以外的任何内容。这是我的代码:

if(msg.content.startsWith("Will")) {
    if (!msg.length) {
       console.log("Nothing other than "Will")
    }
}

其他人可以帮忙吗?非常感谢。

1 个答案:

答案 0 :(得分:0)

您必须检查 message.content。如果 message.content 不是 Will,那么做任何事情。

    if(msg.content === 'Will'){
       console.log("Nothing other than "Will")
    }
}