1
jasya 2014-05-27 11:54:51 +08:00
req.params
|
2
zoowii 2014-05-27 11:58:47 +08:00
没用express
不过这种东西就算没有,自己封装一层context也可以了吧? 比如 var ctx = context(['GET', '/info', ...]); app.path('/api', ctx) |
3
kfll 2014-05-27 12:08:43 +08:00 2
// http://expressjs.com/4x/api.html#router
var router = express.Router() router.get('/site_info', someAction); router.get('/member_info', yetAnotherAction); app.get('/api', router); |
4
heroicYang 2014-05-27 13:01:38 +08:00
@kfll 正解
不过这是 4.x 的 feature,哈哈~ |
5
luin 2014-05-27 13:12:44 +08:00 via iPhone 1
可以看我写的文章:
http://zihua.li/2014/05/good-practices-to-structure-an-express-app/ 具体来说可以使用 app.use('/app', subApp);,然后 subApp.get('/site_info' , func)。类似 namespace |
8
mytharcher 2014-05-27 14:07:46 +08:00
加上 npm install rainbow 效果更好
|