TypeError:res.sendFile不是函数

时间:2016-02-02 10:09:38

标签: javascript node.js express

我正在通过一个基本的MEAN教程,我已经打了一堵墙。获取'TypeError:res.sendFile不是函数'错误

interceptor

2 个答案:

答案 0 :(得分:5)

请重新安排回调参数:

function(req,res){}

示例:

app.get('/',function(req, res){
  res.sendFile(path.join(__dirname+'/index.html'));
});

答案 1 :(得分:0)

你在这里犯了错误 app.get(' /',功能(res,req) 写吧 app.get(' *',function(req,res) 它会起作用