首页 > 解决方案 > 如何从个人用户那里获取文本

问题描述

我正在尝试为特定用户创建注释命令,但我的 Discord 机器人将注释作为用户公众所说的任何注释。我该如何解决?我已经知道我的代码存在问题,但我不知道如何解决它。

if (command == "Note") {
   const notes = db.fetch('userInfo');
   while (!args[0]) return message.channel.send("Here are your notes: " + notes);
   db.set('userInfo', args.join(' '));
   message.channel.send((args.join(' ')) + (" successfully noted!"));
}

标签: javascriptdiscord.jsquick.db

解决方案


您有一个名为 的行userInfo,只要有人执行该命令,该行就会更新。如果您希望它与用户链接,您最好使用用户的 id,因为每个人都有不同的 ID。我建议使用类似的东西:

   const notes = db.fetch(`userInfo.${message.author.id}`)
   while (!args[0]) return message.channel.send("Here are your notes: " + notes )
   db.set('userInfo.${message.author.id}', args.join(' '))
   message.channel.send(args.join(' ') + " successfully noted!")

推荐阅读