节点:Express:如何处理application / octet-stream; charset =; UTF-8响应?

时间:2019-12-05 16:48:13

标签: node.js express utf-8 content-type unirest

我有一个node-express应用程序。 在那里,我试图调用一个API,该API将原始xlsx对象响应为

  

“ Content-Type”:“ application / octet-stream; charset =; UTF-8”

编码我如何调用API:

var unirest = require("unirest");

var reqClient = unirest("POST", "https://api.application.com/getExcel");
reqClient.headers({ "Authorization": "Bearer " + req.session.passport.user.token, 
"content-type": req.headers['content-type'], "application/json"});
reqClient.type("json");
reqClient.send(JSON.stringify(requestbody));
reqClient.end(function(res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});

现在我要实际使用此数据做两件事。

  1. 将其写入Excel文件。 下面是我如何尝试的代码:
    let data = res.body // res is the response coming from the API
    let buf = Buffer.from(data);
    excelfile = fs.createWriteStream("result.xlsx");
    excelfile.write(buf);
    excelfile.end();
  1. 尝试将其发送到将创建excelfile的 UI 。 下面是我的代码:
    let data = res.body // res is the response coming from the API
    let buf = Buffer.from(data);
    response.write(buf); //response is the response to the request to ui
    response.end();

因此,在两种情况下文件都将损坏。

但是API响应是完美的,因为当 UI 直接使用它时,xlsx文件会正确生成。

1 个答案:

答案 0 :(得分:2)

处理二进制数据时,必须将编码设置为null

reqClient.encoding(null)
reqClient.encoding(null)
reqClient.end(function(res) {
    if (res.error) {
       return response.status(500).send('error');
    }

    // res.body is now a buffer
    response.write(res.body);
    response.end();
});

否则,数据将转换为UTF-8,并且您无法将UTF-8转换回二进制文件并获得相同的数据,这就是您所做的:

Buffer.from(res.body)

推荐的方法是直接使用流,在unirest中看不到一种简单的方法,我建议使用requestgot,因此您可以直接.pipe到文件或表达res