如何上传文件并在Node JS中获取内容

时间:2019-09-11 15:34:28

标签: javascript node.js file-upload node-modules

我正在尝试上传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对象

enter image description here

1 个答案:

答案 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
});```