标签: javascript node.js express
我正在通过一个基本的MEAN教程,我已经打了一堵墙。获取'TypeError:res.sendFile不是函数'错误
interceptor
答案 0 :(得分:5)
请重新安排回调参数:
function(req,res){}
示例:
app.get('/',function(req, res){ res.sendFile(path.join(__dirname+'/index.html')); });
答案 1 :(得分:0)