好的,我是使用JavaScript的新手,并且一直在使用Discord.js制作一个或两个Discord Bot。我最近正在研究 Medal Bot (奖章机器人),如果某人向其授予命令,它将向用户授予奖牌。大致看起来像:/awardmedal The Copper Cross (INSERT USER@ HERE)
每当我运行代码并执行任何勋章命令时,它都会出现以下内容:
Medals.js:21 var usertag = message.mentions.users.first().id;
^
TypeError: Cannot read property 'id' of undefined
我想知道是否有人可以提供帮助,并告诉我应该如何解决它,谢谢。这是执行此操作的代码:
var prefix = "/"
client.on('ready', () => {
console.log("ZiloBot Loaded");
});
client.on("message", (message) => {
var usertag = message.mentions.users.first().id;
if (message.content.startsWith(prefix + "awardmedal " + "The Copper Cross " + usertag)) {
if (sjw.includes(message.author.id)) {
console.log("Awarding Copper Cross to " + usertag);
message.channel.send("Awarding Copper Cross to " + usertag);
};
};
client.login(mytokenissecret);
});
不用担心sjw
变量,它是在此变量之前的一段代码中定义的。我的主要问题是id
未定义。
答案 0 :(得分:0)
改进了您的代码:
client.on('ready', () => {
console.log("ZiloBot Loaded");
});
client.on("message", (message) => {
const prefix = "/"; // using ES6
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).trim().split(/ +/g);
const cmdName = args.shift().toLowerCase();
if (cmdName === 'awardmedal') {
// checking if user inluded correct medal name in message.
let mention = message.mentions.users.first();
// checking if message don't have a user mention
if (!mention) return message.channel.send('You need to mention a user.');
let medals = ['The Copper Cross']; // creating array of medals in case u want to add more medals later on
let medal = args.join(' ').replace(`<@!${mention.id}>`, '').trim(); // removing mention and spaces from message string
if (!medals.map(m => m.toLowerCase()).includes(medal.toLowerCase())) {
message.channel.send(`Please choose one from a list:\n${medals.join(', ')}`);
return;
}
if (!sjw.includes(message.author.id)) {
// if user in not in "sjw"
return;
}
console.log(`Awarding ${medal} to ${mention.name}`);
message.channel.send(`Awarding ${medal} to ${mention}`);
}
};
client.login(mytokenissecret);
要解决您的主要问题,首先需要检查用户提及的内容是否存在,并且仅在获得ID后才能检查。
let mention = message.mentions.users.first();
if (mention) console.log(mention.id);
答案 1 :(得分:0)
message.mentions.users.first()
不是东西
服务器没有用户,他们有成员,所以使用
message.mentions.members.first().id