我有文件post
到服务器,所以我可以读取客户端的内容,它适用于第一次调用,但当我第二次上传文件时,我得到以下错误,它看起来像一些绝对路径问题。我该如何解决这个问题?
server.js
export function create(req, res) {
data.parse(req, function(err, fields, files) {
var fileContent = fs.readFileSync(files.file[0].path,'utf8');
res.json(fileContent );
});
}
错误
fileUpload.controller.js:14
var fileContent = fs.readFileSync(files.file[0].path, 'utf8');
^
TypeError: Cannot read property 'file' of undefined