我正在通过以下链接快速阅读路由器的文档
http://expressjs.com/en/guide/routing.html
var express = require('express')
var router = express.Router()
// middleware that is specific to this router
router.use(function timeLog (req, res, next) { //why is the middle ware named here
console.log('Time: ', Date.now())
next()
})
// define the home page route
router.get('/', function (req, res) {
res.send('Birds home page')
})
// define the about route
router.get('/about', function (req, res) {
res.send('About birds')
})
module.exports = router
我怀疑(请检查代码中的注释)为什么在router.use(.....)中将中间件命名为ie。它的名称为timeLog,而通常我们不会在中间件中写一个名称,而是直接写函数(req,res)。。我是该领域的初学者,所以我可能会提出一些明显的问题。。。 >