我正在尝试查找通道中是否仍然存在消息,但是,我不确定如何解决承诺,通过查看其他答案和文档,我可以看到它可能是通过函数实现的,但是我不确定如何做到。我希望在此方面有所帮助,因为这是Discord机器人新功能的最后一步。
const embedId = embedChannel.messages.fetch(foundtEmbed.ticketembedchan);
console.log(embedId)
当前输出Promise { <pending> }
答案 0 :(得分:1)
您应该使用async/await
或使用then
:
try {
const embedId = await embedChannel.messages.fetch(foundtEmbed.ticketembedchan);
console.log(embedId)
}catch(err) {
console.log(err)
}
不要忘记将async
添加到您的函数中。
或:
embedChannel.messages.fetch(foundtEmbed.ticketembedchan)
.then(res => console.log(res))
.catch(err => console.log(err))