通过 nextjs api 文件夹将图像发送到 nodejs api

Send an image to nodejs api by nextjs api folder

我一个 我有一个从强大的库中获得的文件实例。看起来像这样

photo: File {
    _events: [Object: null prototype] {},
    _eventsCount: 0,
    _maxListeners: undefined,
    size: 16648,
    path: 'public/upload_1.jpg',
    name: 'test.jpg',
    type: 'image/jpeg',
    hash: null,
    lastModifiedDate: 2021-07-08T11:22:05.804Z,
    _writeStream: WriteStream {
      _writableState: [WritableState],
      writable: false,
      _events: [Object: null prototype] {},
      _eventsCount: 0,
      _maxListeners: undefined,
      path: 'public/upload_1.jpg',
      fd: null,
      flags: 'w',
      mode: 438,
      start: undefined,
      autoClose: true,
      pos: undefined,
      bytesWritten: 16648,
      closed: false
    }
  }

现在我需要将此图像传递给外部 nodejs api,它需要

中的图像
req.file('photo')

格式。

请帮助如何将上述实例发送到nodejs api。

提前致谢

服务器端 FormData 和 fs.createReadStream 对我来说就像一个魅力。