doulu3399 2012-12-15 19:35
浏览 23
已采纳

如何在phalcon框架中应用路由器/ roite?

Here, in docs, is written about how to create routes: http://docs.phalconphp.com/en/latest/reference/routing.html

But i can't find how i can inject them in application. What i need to do, to make my application use defined routes?

Should i inject router (or how?)

  • 写回答

1条回答 默认 最新

  • douchun5976 2012-12-15 20:15
    关注

    The router can be registered in the DI (in your public/index.php) this way:

    $di->set('router', function() {
    
        $router = new \Phalcon\Mvc\Router();
    
        $router->add("/login", array(       
            'controller' => 'login',
            'action' => 'index',
        ));
    
        $router->add("/products/:action", array(        
            'controller' => 'products',
            'action' => 1,
        ));
    
        return $router;
    });
    

    Also is possible to move the registration of routes to a separate file in your application (i.e app/config/routes.php) this way:

    $di->set('router', function(){
        require __DIR__.'/../app/config/routes.php';
        return $router;
    });
    

    Then in the app/config/routes.php file:

    <?php
    
    $router = new \Phalcon\Mvc\Router();
    
    $router->add("/login", array(       
        'controller' => 'login',
        'action' => 'index',
    ));
    
    $router->add("/products/:action", array(        
        'controller' => 'products',
        'action' => 1,
    ));
    
    return $router;
    

    Examples: https://github.com/phalcon/php-site/blob/master/public/index.php#L33 and https://github.com/phalcon/php-site/blob/master/app/config/routes.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#python#的问题:求帮写python代码
  • ¥15 LiBeAs的带隙等于0.997eV,计算阴离子的N和P
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 来真人,不要ai!matlab有关常微分方程的问题求解决,
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?