我将如何对 [discord.js] 中的特定消息做出反应

How would I react to a specific message in [discord.js](我将如何对 [discord.js] 中的特定消息做出反应)
本文介绍了我将如何对 [discord.js] 中的特定消息做出反应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试让我的机器人对频道中的特定消息做出反应.这是我到目前为止的代码:

I'm trying to make my bot react to a specific message in a channel. This is the code I have so far:

message.fetch(`messageID`).then(message => {
  message.react(`emoji`);
});

推荐答案

要获取特定消息,您至少必须先获取它的频道:

To fetch a specific message you must at least fetch it's channel before :

message.client.channels.fetch("channelID").then(channel => {
    channel.messages.fetch("messageID").then(message => {
        message.react("emoji");
    }
}

这篇关于我将如何对 [discord.js] 中的特定消息做出反应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Should I use window.navigate or document.location in JavaScript?(我应该在 JavaScript 中使用 window.navigate 还是 document.location?)
Power BI - Get data from post request(Power BI - 从发布请求中获取数据)
Embed a Power BI report in React JS to get report instance(在 React JS 中嵌入 Power BI 报表以获取报表实例)
Create Report in Embed View via PowerBI API(通过 PowerBI API 在嵌入视图中创建报表)
Interactive Dialog Box in PowerBI(PowerBI 中的交互式对话框)
Print/Generate PDF of embedded power bi report(打印/生成嵌入式 power bi 报告的 PDF)