1. ホーム
  2. javascript

[解決済み] IDによるメッセージの削除

2022-02-16 18:12:31

質問

私のサーバーでポールの投票パネルを表示するボットを作成しました。理想的には、人々が何かに投票したときに古いメッセージを削除し、ポールを更新するために新しいメッセージを送信するようにしたいのですが、どうすればいいですか?

message.channel.fetchMessage を使って古いメッセージ ID を取得し、'LastMessageID' は正しい ID ですが、コンソールで大量のエラーを出さずにメッセージを選択して削除する方法を見つけることができないようです。 例えば、私は試してみました。

message.channel.fetchMessage(LastMessageID)
 .then(message.delete)

そして、次のようなエラーが出るだけです。

(node:82184) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'client' of undefined
    at resolve (C:\Users\Username\Desktop\TestBot\node_modules\discord.js\src\structures\Message.js:480:14)
    at new Promise (<anonymous>)
    at delete (C:\Users\Username\Desktop\TestBot\node_modules\discord.js\src\structures\Message.js:479:14)
    at <anonymous>
    at process._tickCallback (internal/process/next_tick.js:189:7) (node:82184) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 2) (node:82184) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

メッセージをIDで削除するような簡単なことをどうやったらできるのか、本当にバカみたいです。何か手助けがあれば、とてもありがたいです。

解決方法

これは、あなたが探しているものです:メッセージを見つけて、それを削除します。

// ASSUMPTIONS:
// channel: the channel you want the message to be sent in
// lastmsg: the id of the last poll message

channel.fetchMessage(lastmsg).then(msg => msg.delete());

これはこれでいいのですが、もっといい方法を提案させてください。

// Option A: delete the old message and send the new one in the same function
channel.fetchMessage(lastmsg).then(async msg => {
  await channel.send("Your new message.");
  if (msg) msg.delete();
});

// Option B: if you have a poll dedicated channel that is kept cleaned and organized, 
// you can edit the old message (you avoid notifications for every update)
channel.fetchMessage(lastmsg).then(msg => {
  if (msg) msg.edit("Your new message.");
});