我正在通过一个基本的MEAN教程,我已经打了一堵墙.获取’TypeError:res.sendFile不是函数’错误
//package.json
{
"name": "http-server",
"main": "server.js",
"dependencies": {
"express": "^4.13.4"
}
}
//server.js
var express = require('express');
var app = express();
var path = require('path');
app.get('/', function (res, req) {
res.sendFile(path.join(__dirname + '/index.html'));
});
app.listen(1337);
console.log('Visit me at http://localhost:1337');
解决方法:
请重新安排回调参数:
function(req,res){}
例:
app.get('/',function(req, res){
res.sendFile(path.join(__dirname+'/index.html'));
});