我正在尝试上传xsls文件,并尝试将其内容转换为JSON并显示在控制台中。 我正在使用此插件上传文件 https://www.npmjs.com/package/express-fileupload 我对此做一个简单的演示。
https://codesandbox.io/s/flamboyant-payne-p7chg
我在使用此sample file
https://gofile.io/?c=2wBegC的服务时
它显示binary
不是JSON或内容
app.use(upload()); // configure middleware
app.get("/abc", function(req, res) {
res.send({ test: "sss" });
});
app.post("/upload", function(req, res) {
console.log("ssss");
console.log(req.files);
});
app.listen(PORT, function() {
console.log("Express server listening on port ", PORT); // eslint-disable-line
});
我认为我需要将binary
转换为某些json对象
答案 0 :(得分:-1)
您可以尝试excel2Json:
npm install excel2Json --save
然后:
const excel2Json = require('excel2json');
excel2Json('sample.xls', (err, output) => {
// do stuff with your outputJSON
});
// Or with additional options
excel2Json('../test/sample.xls', {
'convert_all_sheet': false,
'return_type': 'File',
'sheetName': 'survey'
}, (err, output) => {
// do stuff with your outputJSON
});```