ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### 使用中间件 > 在应用中使用中间件 ``` // 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); }; ```