标签: node.js express
我的情况很简单
app.use('/health/*', (req, res, next) => { // if the requested URL is GET /health/users/list // i want to the request to be handled by // users.list through the next route handler }); app.post('/users/list', users.list);