我正在使用Phalcon Framework,并希望了解如何对路线进行分组。 官方文档对我帮助不大。
这就是我的路线的样子:
$app->get('/users', function() {
// do something
});
$app->get('/users/{id}', function($id) {
// do something
});
$app->post('/users', function() {
// do something
});
我想将这些路线分组在"用户"分组,使代码更清晰,更有条理。
我该怎么做?
答案 0 :(得分:0)
我正在使用这个集合。代码看起来像。
$inbound = new Phalcon\Mvc\Micro\Collection();
$inbound->setHandler('InboundController', true);
$inbound->setPrefix('/v1/inbound');
$inbound->get('/{req_no}', 'readAction');
$inbound->post('/', 'createAction');
$inbound->put('/{req_no}', 'updateAction');
$inbound->delete('/{req_no}', 'deleteAction');