duanbi8529 2017-07-19 01:36
浏览 95
已采纳

SlimPhp微框架上的Api路由模式?

Is there some pattern of routes and how to write the structure using SlimPhp?

Like, I made a api folder with a index.php to store ALL my routes:

$app->get('/api/shirt/{id}', function (Request $request, Response $response) { 
    //CODE
});
$app->get('/api/some-other-endpoint/{id}', function (Request $request, Response $response)
    //CODE
});

But after some time, I realized that my index file will get pretty big.

So, how can I manage my endpoint routes? Using classes, controllers, actions?

Where can I find documentation about these particular concepts?

  • 写回答

2条回答 默认 最新

  • douba3975 2017-07-19 17:29
    关注

    I'm using controller's (named Action's in this example) and still have all routing in one file.

    Additionally I use grouping whereever I can because it give a better structure (in my opinion). I try to make the Action-classes as small as possible that I do not need to look at the routes-file for getting the class which I want to change.

    Here an example:

    Routes-File:

    $app->get('/user/{name}', [ShowUserAction::class, 'showUser'])->setName('user');
    $app->get('/login', [LoginUserAction::class, 'showLogin'])->setName('login');
    
    $app->group('/api', function () {
        $this->get('/images', [ImagesApi::class, 'getImages'])->setName('api.images');
        $this->get('/tags', [ImagesApi::class, 'getTags'])->setName('api.tags');
        $this->get('/notifications', [UserNotificationsApiAction::class, 'getNotifications'])->setName('api.notifications');
        $this->get('/bubbleCount', [BubbleCountApiAction::class, 'getBubbleCount'])->setName('api.bubbleCount');
    });
    
    $app->group('/review', function() use ($currentUser) {
       $this->get('', [ReviewAction::class, 'showReviewOverview'])->setName('review.overview')->setName('review')
       $this->get('/{type}', [ReviewAction::class, 'showReviewWithType'])->setName('review.type')
       $this->get('/{type}/{id}', [ReviewAction::class, 'showReview'])->setName('review.type.id')
    });
    

    Action-class:

    class LoginUserAction
    {
        public function __construct() { }  // with parameters
    
        public function showLogin(Request $request, Response $response)
        {
            if ($this->currentUser->isLoggedIn()) {
                return $response->withRedirect($this->router->pathFor('index'));
            }
    
            return $this->view->render($response, 'user/login.twig');
        }
    
        public function doLogin(Request $request, Response $response)
        {
            // check user name password and then login
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?