我正在记录一个现有的节点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
页面上,我的所有端点都显示为:招摇过市端点
我如何制作这样的招摇过市节目:我想要的招摇过市端点
非常感谢!
暂无答案!
目前还没有任何答案,快来回答吧!