读取文件附件(例如;.txt 文件)- Discord.JS

Reading file attachments (Ex; .txt file) - Discord.JS

第二次在 Whosebug 上发帖,如有错误,我深表歉意。 请多多包涵。

同题;你如何阅读不和谐附件的内容比方说 .txt 文件并打印内容?

我尝试过 fs 但不幸的是失败了,我也搜索了文档但也失败了。

想法?

您不能为此使用 fs 模块,因为它只处理本地文件。当您将文件上传到 Discord 服务器时,它会被上传到 CDN,您所能做的就是使用 url [=32= 从 MessageAttachment 获取此文件的 URL ].

如果你需要从网上获取文件,你可以使用内置的 https 模块从 URL 获取它,或者你可以从 npm 安装一个,就像那个我在下面使用,node-fetch.

To install node-fetch, run npm i node-fetch in your root folder.

查看下面的工作代码,它适用于文本文件:

const { Client } = require('discord.js');
const fetch = require('node-fetch');

const client = new Client();

client.on('message', async (message) => {
  if (message.author.bot) return;

  // get the file's URL
  const file = message.attachments.first()?.url;
  if (!file) return console.log('No attached file found');

  try {
    message.channel.send('Reading the file! Fetching data...');

    // fetch the file from the external URL
    const response = await fetch(file);

    // if there was an error send a message with the status
    if (!response.ok)
      return message.channel.send(
        'There was an error with fetching the file:',
        response.statusText,
      );

    // take the response stream and read it to completion
    const text = await response.text();

    if (text) {
      message.channel.send(`\`\`\`${text}\`\`\``);
    }
  } catch (error) {
    console.log(error);
  }
});