NodeJS 如何使用npm get将文件发布到远程url?

vsikbqxv  于 2022-12-03  发布在  Node.js
关注(0)|答案(1)|浏览(148)

我正在尝试使用npm get将一个文件发布到远程URL。但是它没有按预期工作。
我已经尝试了以下方法

const headers = {
    "Content-Type": "image/png"
}

const requestProperties = {
    method: 'POST',
    url,
    headers,
    json: fs.createReadStream(file.path)
}

const response = await got(requestProperties);

谢谢你,谢谢你

vlju58qv

vlju58qv1#

谢谢你@phil我已经用身体属性代替json了。

const headers = {
    "Content-Type": "image/png"
}

const requestProperties = {
    method: 'POST',
    url,
    headers,
    body: fs.createReadStream(file.path)
}

const response = await got(requestProperties);

相关问题