在节点 js 中标记消息作者的问题
Problems tagging the message author in node js
尝试创建一个命令,在使用时会标记使用该命令的用户,标记一个角色并添加两个反应。角色标签和反应有效,但我无法让使用该命令的人被标记。任何想法,如果它只是语法错误或此应用程序的 message.author
格式错误,谢谢。
client.on('message', message => {
if (message.content === '!rankup')
message.channel.send(' ${message.author} <@&869746450794418186>, is looking for rankup').then(sentMessage => {
sentMessage.react('☑️');
sentMessage.react('✅');
});
});
使用反引号,即
//(`${variable} other strings`)
`${message.author} <@&869746450794418186>, is looking for rankup`
而不是双引号("") 或单引号('')
尝试创建一个命令,在使用时会标记使用该命令的用户,标记一个角色并添加两个反应。角色标签和反应有效,但我无法让使用该命令的人被标记。任何想法,如果它只是语法错误或此应用程序的 message.author
格式错误,谢谢。
client.on('message', message => {
if (message.content === '!rankup')
message.channel.send(' ${message.author} <@&869746450794418186>, is looking for rankup').then(sentMessage => {
sentMessage.react('☑️');
sentMessage.react('✅');
});
});
使用反引号,即
//(`${variable} other strings`)
`${message.author} <@&869746450794418186>, is looking for rankup`
而不是双引号("") 或单引号('')