【发布时间】:2021-07-21 02:09:46
【问题描述】:
我是 noode js 和 reactjs 的新手,我正在尝试使用 axios 从 react js 前端发送 excel 文件
import axios from 'axios';
export const uploadFile = async (file) => {
let formData = new FormData();
formData.append("file", file);
return await axios.post("/uploadFile", formData, {
headers: {
'Content-Type': 'multipart/form-data',
accept: "application/json",
},
});
};
如何在服务器端检索excel文件并验证excel文件中的数据
这是我的服务器端代码
async function uploadFile(fastify) {
fastify.register(require('fastify-multipart'));
fastify.post('/uploadFile', async (req, res) => {
// How to retrieve the excel file from the request body???
});
}
module.exports = uploadFile;
【问题讨论】:
标签: node.js reactjs excel fastify