尝试为此找到正确的语法...
const stat = msg.author.presence.status;
if (~msg.author.presence.status.equals("online"))
{msg.reply( "\nStatus: " + stat);}
// ============
来自repl.it的错误是....
TypeError: msg.author.presence.status.equals is not a function
// ====================
答案 0 :(得分:1)
首先,我试图了解按位运算符~
在这里的操作。根据链接的文档,状态为String。要将相等与字符串进行比较,建议使用===
(Strict Equality)
尝试类似
if (msg.author.presence.status === 'online')