# app.route

返回单个路由的实例。

# 概要

app.route(path)

# 描述

返回单个路由的实例,然后您可以使用它来处理带有可选中间件的 HTTP 动词。使用 app.route()来避免重复的路由名称(从而避免拼写错误)。

const app = express()

app.route('/events')
  .all((req, res, next) => {
    // runs for all HTTP verbs first
    // think of it as route specific middleware!
  })
  .get((req, res, next) => {
    res.json({})
  })
  .post((req, res, next) => {
    // maybe add a new event...
  })
Last Updated: 6/17/2023, 6:57:19 PM