筛选 String/Array 多个条件
Filter String/Array for multiple conditions
下面是我的代码,基本上我希望机器人检查两件事。用户消息需要包含“how”+“doing”或“bread”。当我只使用“做”而不是当我添加“面包”条件时,它工作得很好。
我需要一个干净简单的解决方案,希望有人能帮助我,因为对我来说这是归档我需要的最合乎逻辑的方式:D
if(msg.content.includes("how") && msg.content.includes("doing" || "bread") ){
if(msg.author != token){
msg.lineReply("I am good sir")
}
}
if(msg.content.includes("how") && (msg.content.includes("doing") || msg.content.includes("bread")) ){
if(msg.author != token){
msg.lineReply("I am good sir")
}
}
下面是我的代码,基本上我希望机器人检查两件事。用户消息需要包含“how”+“doing”或“bread”。当我只使用“做”而不是当我添加“面包”条件时,它工作得很好。 我需要一个干净简单的解决方案,希望有人能帮助我,因为对我来说这是归档我需要的最合乎逻辑的方式:D
if(msg.content.includes("how") && msg.content.includes("doing" || "bread") ){
if(msg.author != token){
msg.lineReply("I am good sir")
}
}
if(msg.content.includes("how") && (msg.content.includes("doing") || msg.content.includes("bread")) ){
if(msg.author != token){
msg.lineReply("I am good sir")
}
}