我有一个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);
});
现在我要实际使用此数据做两件事。
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();
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文件会正确生成。
答案 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
中看不到一种简单的方法,我建议使用request
或got
,因此您可以直接.pipe
到文件或表达res