我有一个本地文件,参数是文件路径(例如:./ src / fox.jpg)。
我想从此文件路径获取文件对象,以便将帖子发送到REST API,如下图所示:
var args = {
data: FileObject from file path
headers: {
"Authorization": `${token}`,
"x-filetype": file.type,
"x-filename": encodeURI(file.name),
"Content-Type": "multipart/form-data"
}
};
client.post("http://...", args, function (data, response) {
// parsed response body as js object
console.log(data);
// raw response
console.log(response);
});
所以我在NodeJS中使用了readFile和createReadStream,但是它没有用。
我该怎么做?