node:如何在文档中使swagger显示路由+端点

vlf7wbxs  于 2021-09-23  发布在  Java
关注(0)|答案(0)|浏览(212)

我正在记录一个现有的节点api。对于这个任务,我使用的是swagger ui express&&swagger autogen。
所有路由都位于routes.js内,如下所示:

router.use('/my_route', require('./my_routes.js'));

里面 my_routes.js ,我有很多端点,如下所示:

router.get('/', custom1.customFunction1);
router.get('/:custom2/:custom3', custom1.customFunction23);
router.put('/custom4', custom4.customFunction4);

问题在于 /documentation 页面上,我的所有端点都显示为:招摇过市端点
我如何制作这样的招摇过市节目:我想要的招摇过市端点
非常感谢!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题