前提・実現したいこと
node.jsのdiscord.jsで作ったBOTにevalのコマンドを作成しようとしたのですが思うような結果が得られませんでした。
~編集 2021/10/15 17:48ごろ~
DiscordのAPIがempty messageのエラーを出していたのは、eval関数がconsole.logの返り値、undefinedを送信しようとしたためだとわかりました。
そこで、console.logなどの関数によるconsoleへの出力もDiscordのほうに出力したいのですが、どのようにしたらいいでしょうか。
発生している問題・エラーメッセージ
(node:311) UnhandledPromiseRejectionWarning: DiscordAPIError: Cannot send an empty message at RequestHandler.execute (/home/runner/newyinabot/node_modules/discord.js/src/rest/RequestHandler.js:170:25) at processTicksAndRejections (internal/process/task_queues.js:97:5) (node:311) 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(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1) (node:311) [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.
該当のソースコード
javascript
1} else if (msg.content === '--eval' || msg.author.id === 802152878855684106) { 2 const collector = new Discord.MessageCollector(msg.channel, m => m.author.id === msg.author.id, { time: 10000 }); 3 msg.channel.send("実行するコードを発言してください。"); 4 collector.on('collect', message => { 5 message.channel.send(eval(message.content)); 6 }) 7}
試したこと
console.log('aaa');
などと入力してもdiscordの方には結果が出力されずconsoleの方に出力されました。
補足情報(FW/ツールのバージョンなど)
Node.js v16
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/16 02:43
2021/10/16 02:48
2021/10/16 05:00
2021/10/16 05:45
2021/10/16 12:45
2021/10/17 05:34