如何使用nodejs中的文件系统解决路径问题?

时间:2016-11-01 13:32:47

标签: javascript node.js

我有文件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

0 个答案:

没有答案