【发布时间】:2025-11-27 18:35:01
【问题描述】:
所以我的机器人应该等待用户的反应,然后他应该发送一条消息,有时他会等待(我认为是因为互联网连接),但大多数情况下不像你在这个截图中看到的那样:https://ibb.co/9gmfcr8what是个问题,但即使我提出建议,他也不会将消息发送到特定频道,而是我收到错误:RangeError [EMBED_FIELD_VALUE]: MessageEmbed field values may not be empty./UnhandledPromiseRejectionWarning: RangeError [EMBED_FIELD_VALUE]: MessageEmbed field values may not be empty.Idk 为什么他不等待反应或为什么他不会发送建议。我会感谢任何建议/解决方案。
module.exports = {
name: 'suggest',
aliases: ['sug', 'suggestion'],
description: 'Suggest something for the Bot',
async execute(message, client, args) {
try {
const { MessageEmbed } = require('discord.js');
const Embed = new MessageEmbed()
.setColor('0x0099ff')
.setDescription(`Suggestion categories`)
.addField(`For what you want to suggest something?`, `\nA: I want to suggest something for the Website/Servers/Discord Server\nB: I want to suggest something for the CloudX Bot \n\nPlease react to this message with A or B`)
message.channel.send(Embed).then(async function (message) {
await message.react("????")
await message.react("????")
const filter = (reaction, user) => {
return ['????', '????'].includes(reaction.emoji.name) && user.id;
}
await message.awaitReactions(filter, { max: 1 })
.then(async collected => {
const reaction = collected.first();
if (reaction.emoji.name === '????') {
const filter = m => m.author.id === message.author.id;
await message.channel.send(`Please provide a suggestion for the Website/Servers/Discord Server or cancel this command with "cancel"!`)
message.channel.awaitMessages(filter, { max: 1, })
.then(async (collected) => {
try{
if (collected.first().content.toLowerCase() === 'cancel') {
message.reply("Your suggestion has been cancelled.")
}
else {
const embed1 = new MessageEmbed()
.setColor('0x0099ff')
.setAuthor(message.author.tag)
.addField(`New Suggestion:`, `${collected.first().content}`)
.setFooter(client.user.username, "attachment://CloudX.png")
.setTimestamp();
const channel = await client.channels.fetch("705781201469964308")
await channel.send({embed: embed1, files: [{
attachment:'CloudX.png',
name:'CloudX.png'
}]})
await message.channel.send(`Your suggestion has been filled to the staff team. Thank you!`)
}
} catch (error) {
console.log(error)
}
})
}
if (reaction.emoji.name === '????') {
const filter = m => m.author.id === message.author.id;
await message.channel.send(`Please provide a suggestion for the CloudX Bot or cancel this command with "cancel"!`)
message.channel.awaitMessages(filter, { max: 1, })
.then(async (collected) => {
try{
if (collected.first().content.toLowerCase() === 'cancel') {
message.reply("Your suggestion has been cancelled.")
}
else {
const embed2 = new MessageEmbed()
.setColor('0x0099ff')
.setAuthor(message.author.tag)
.addField(`New Suggestion:`, `${collected.first().content}`)
.setFooter(client.user.username, "attachment://CloudX.png")
.setTimestamp();
const channel = await client.channels.fetch("702825446248808519")
await channel.send({embed: embed2, files: [{
attachment:'CloudX.png',
name:'CloudX.png'
}]})
await message.channel.send(`Your suggestion has been filled to the staff team. Thank you!`)
}
} catch (error) {
console.log(error)
}
})
}
})
})
} catch (error) {
console.log(error)
}
},
catch(err) {
console.log(err)
}
};
【问题讨论】:
标签: javascript async-await bots embed discord.js