使用express我们可以轻松调用函数get(),如:
var app = express();
app.get('/',function(req,res){
// do stuff
})
node.js中的等价物是什么?那么如果没有表达我怎么能做同样的事呢?
答案 0 :(得分:4)
我想这就是你可以做的事情
var http = require('http');
http.createServer(function (req, res) {
if(req.method === 'GET' && req.path === '/'){
// do stuff
}
}).listen(8080, "127.0.0.1");