我正在尝试使用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);
谢谢你,谢谢你
1条答案
按热度按时间vlju58qv1#
谢谢你@phil我已经用身体属性代替json了。