search

Home  >  Q&A  >  body text

node.js - express.use的默认path是/,表示的是什么意思

express.use('/',...)表示的是所有请求都会经过这个中间件吗?那这和express.use('/*',...)有什么区别?

天蓬老师天蓬老师2787 days ago289

reply all(2)I'll reply

  • 高洛峰

    高洛峰2017-04-17 16:00:11

    /不会匹配/about,但是/*Yes

    reply
    0
  • 天蓬老师

    天蓬老师2017-04-17 16:00:11

    express.use('/') only matches the path host+'/'express.use('/') 只匹配 host+'/'这个路径

    express.use('/*') '*' 代表任何, 匹配'/'以及'/'后面加任何的路径

    处理所有请求,直接用express(function(){})

    express.use('/*') '*' represents anything, matching '/' and any path followed by '/'🎜 🎜Handle all requests directly with express(function(){})🎜

    reply
    0
  • Cancelreply