0

ドロップボックス フォルダーから Netlify の Jekyll ビルドに画像を取得しようとしていますが、次のコードでは画像を読み取ることができません。内容の変換を間違っていると思います。

dbx
  .filesListFolder({ path: "/images" })
  .then(response => {
    response.entries.forEach(entry => {
      const { name, path_lower } = entry;

      if (entry[".tag"] === "file") {
        dbx
          .filesDownload({ path: path_lower })
          .then(data => {
            const filename = path.resolve(IMAGES_DIR, name);
            const filecontents = data.fileBinary.toString("base64");

            fs.outputFile(filename, filecontents).catch(error => {
              if (error) {
                return console.log("Error: file failed to write", name, error);
              }
            });
          })
          .catch(error => {
            console.log("Error: file failed to download", name, error);
          });
      }
    });
  })

どんな助けでも大歓迎です。ありがとう。

4

1 に答える 1

0

変更することで修正

const filecontents = data.fileBinary.toString("base64");

const filecontents = data.fileBinary;
于 2019-09-26T17:34:11.160 に答える