我在我的服务器中创建了一个子路由,例如'/users'
,它使用userRoute = express.Router()
但是在mountpath部分的快速文档中,它使用另一种方式,例如使用userRoute = express()
作为子路由,并在此处调用子应用程序:
var app = express(); // the main app
var admin = express(); // the sub app
...
app.use('/admin', admin); // mount the sub app
它们的区别和用途是什么?