# app.router
应用程序的内置路由实例。
# 概述
app.router
# 描述
应用程序的内置路由实例。这是在第一次访问时懒惰地创建的。
const express = require('express')
const app = express()
const router = app.router
router.get('/', (req, res) => {
res.send('hello world')
})
app.listen(3000)
您可以像应用程序一样向 router
添加中间件和 HTTP 方法路由。
有关详细信息,请参阅 路由
。
← app.mountpath app.on →