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 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 AT89C51控制8位八段数码管显示时钟。
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测