🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 使用中间件 > 在应用中使用中间件 ``` // config.default.js config.middleware = ['auth']; config.auth = { abc:123 } ``` > 在路由中使用中间件 ``` module.exports = app => { const { router, controller } = app; const auth = app.middleware.auth({'test':123456}); router.get('/',auth, controller.home.index); }; ```