我想使用它的方法類型獲取所有.js文件的操作/路由。 基本上我想做一個函數,返回所有的動作和方法。如何使用節點js中的方法獲取所有js文件操作
router.get('/this/is/action', function (req, res, next) {
// This action is in login.js
}
router.post('/another/action1', function (req, res, next) {
// This action is in signup.js
}
所以,在這種情況下,我的函數將不得不返回我的響應看起來像下。
{
"data":[
{
"url":"/this/is/action",
"method":"get"
}
{
"url":"/another/action1",
"method":"post"
}
]
}
我已經使用route.stack,但它會給我只有該文件的動作和方法。 –