function createApplication() { var app = function(req, res, next) { app.handle(req, res, next); }; 个人理解是 app在http.createServer(this)被调用,参数req,res通过createServer()触发’request’ event 传递给app函数,不太明白next是怎么来的?希望有人可以解答一下~谢谢
↧
function createApplication() { var app = function(req, res, next) { app.handle(req, res, next); }; 个人理解是 app在http.createServer(this)被调用,参数req,res通过createServer()触发’request’ event 传递给app函数,不太明白next是怎么来的?希望有人可以解答一下~谢谢