如何从文件路径本地nodeJs获取文件对象?

时间:2017-04-05 15:25:48

标签: javascript node.js

我有一个本地文件,参数是文件路径(例如:./ src / fox.jpg)。

我想从此文件路径获取文件对象,以便将帖子发送到REST API,如下图所示:

enter image description here

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,但是它没有用。

我该怎么做?

0 个答案:

没有答案