#node.js #discord.js
#node.js #discord.js
Вопрос:
Я сталкиваюсь с ошибкой «Ошибка типа: не удается прочитать свойство ‘client’ неопределенного» при написании моей команды в я думаю, что из этой строки я правильно ее написал? (я не совсем уверен, так как я новичок в программировании и получал помощь от друга) Кстати, я использую discord v12
if(client.guilds.cache.get(order.guildID).client.me.hasPermission("CREATE_INSTANT_INVITE")) {
// Send message to cook.
message.reply(`Order has been sent to ${client.guilds.cache.get(order.guildID).name}`);
// Get invite.
}else {
// Bot delivers it's self.
client.channels.cache.get(order.channelID).send(`${client.users.cache.get(order.userID)}, Here is your taco that you ordered. Remember you can do `.tip [Amount]` to give us virtual tips, and `.feedback [Feedback]` to give us feedback on how we did. ${order.imageURL}`);
// Logs in console.
console.log(colors.green(`The bot did not have the Create Instant Invite Permissions for ${client.guilds.get(order.guildID).name}, so it delivered the taco itself.`));
}
если это не было проблемой, полный код для команды находится здесь:
const { prefix } = require('../config.json');
const Discord = require('discord.js');
const fsn = require("fs-nextra");
const client = new Discord.Client();
const colors = require("colors");
module.exports = {
name: 'deliver',
description: 'Deliverying an order',
args: 'true',
usage: '<order ID>',
aliases: ['d'],
execute(message) {
const args = message.content.slice(prefix.length).trim().split(/ /g);
if (message.member.roles.cache.find(r => r.id === '745410836901789749')) {
if(message.guild.channels.cache.find(r => r.id === '746423099871985755')) {
fsn.readJSON("./orders.json").then((orderDB) => {
let ticketID = args[1];
let order = orderDB[ticketID];
// If the order doesn't exist.
if(order === undefined) {
message.reply(`Couldn't find order `${args[1]}` Try again.`);
return;
}
// Checks status.
if (order.status === "Ready") {
// Delete ticket from database.
delete orderDB[ticketID];
// Writes data to JSON.
fsn.writeJSON("./orders.json", orderDB, {
replacer: null,
spaces: 4
}).then(() => {
// If bot has create instant invite permission.
if(client.guilds.cache.get(order.guildID).client.me.hasPermission("CREATE_INSTANT_INVITE")) {
// Send message to cook.
message.reply(`Order has been sent to ${client.guilds.cache.get(order.guildID).name}`);
// Get invite.
}else {
// Bot delivers it's self.
client.channels.cache.get(order.channelID).send(`${client.users.cache.get(order.userID)}, Here is your taco that you ordered. Remember you can do `.tip [Amount]` to give us virtual tips, and `.feedback [Feedback]` to give us feedback on how we did. ${order.imageURL}`);
// Logs in console.
console.log(colors.green(`The bot did not have the Create Instant Invite Permissions for ${client.guilds.get(order.guildID).name}, so it delivered the popsicle itself.`));
}
}).catch((err) => {
if (err) {
message.reply(`There was an error while writing to the database! Show the following message to a developer: ```${err}````);
}
});
}else if(order.status === "Unclaimed") {
message.reply("This order hasn't been claimed yet. Run `.claim [Ticket ID]` to claim it.");
}else if(order.status === "Claimed") {
if(message.author.id === order.chef) {
message.reply("You haven't set an image for this order! yet Use `.setorder [Order ID]` to do it.");
}else {
message.reply(`This order hasn't been set an image yet, and only the chef of the order, ${client.users.get(order.chef).username} may set this order.`);
}
}else if(order.status === "Waiting") {
message.reply("This order is in the waiting process right now. Wait a little bit, then run `.deliver [Order ID] to deliver.");
}
});
}else {
message.reply("Please use this command in the correct channel.");
console.log(colors.red(`${message.author.username} used the claim command in the wrong channel.`));
}
}else {
message.reply("You do not have access to this command.");
console.log(colors.red(`${message.author.username} did not have access to the deliver command.`));
}
}
}
Ответ №1:
Вам не требуется добавлять client
при проверке разрешений клиента. Вы можете просто использовать следующее, чтобы проверить права доступа вашего клиента:
if(client.guilds.cache.get(order.guildID).me.hasPermission("CREATE_INSTANT_INVITE")) {
// code here
}
Комментарии:
1. «Ошибка типа: не удается прочитать свойство ‘me’ неопределенного значения»
2. Тогда, скорее всего, проблема с msot
order.guildID
.3. все еще не удалось найти проблему
order.guildID
в другой команде, в которой я храню эту информацию в файле json, подобном этому:// Sets ticket info. fsn.readJSON("./orders.json").then(orderDB => { // Set JSON information. if (!orderDB[ticketID]) orderDB[ticketID] = { "orderID": ticketID, "userID": message.author.id, "guildID": message.guild.id, "channelID": message.channel.id, "order": order, "status": "Unclaimed", "ticketChannelMessageID": "not set" };