ZF2:在路由器中创建url别名

时间:2012-11-10 00:14:00

标签: alias zend-framework2 zend-navigation zend-router

我是Zend Framework 2的新手,我想学习这个框架。我想在路由器中创建url别名。 例如,我在module.config.php

中定义了类似的内容
'router' => array(
    'routes' => array(

        'home' => array(
            'type' => 'Zend\Mvc\Router\Http\Literal',
            'options' => array(
                'route'    => '/',
                'defaults' => array(
                    'controller' => 'Application\Controller\Index',
                    'action'     => 'index',
                ),
            ),
        ),
        'node' => array(
            'type'    => 'Application\Controller\AliasSegment',
            'options' => array(
                'route'    => '/node[/:id]',
                'constraints' => array(
                    'id' => '[0-9]+'
                ),
                'defaults' => array(
                    '__NAMESPACE__' => 'Application\Controller',
                    'controller'    => 'Index',
                    'action'        => 'index',
                    'id'            => '0'
                ),
            ),
            'may_terminate' => true,
        ),

    ),
),

当我输入www.myapp.local/node/1时,它会路由到我的应用程序的默认控制器中的默认操作。我想要的是一个路由器扩展,可以处理url路径的别名。例如:

www.myapp.local/node/1 = www.myapp.local/aboutus
www.myapp.local/node/2 = www.myapp.local/company/gallery

我知道ZF有可能。以下是如何在ZF中实现此目的的教程链接: friendly urls 我知道这是波兰语,但代码是不言自明的,我认为:)

我们的想法是使用url helper来使用别名或普通段(node / [:id])

来汇编有效的url

我已经在Application \ Controller文件夹中创建了AliasSegment类,但它显示错误:

Fatal error: Uncaught exception 'Zend\ServiceManager\Exception\ServiceNotFoundException' with message 'Zend\ServiceManager\ServiceManager::get was unable to fetch or create an instance for Application\Controller\AliasSegment' in C:\xampp\htdocs\industengine\vendor\zendframework\zendframework\library\Zend\ServiceManager\ServiceManager.php:450 Stack trace: #0 

我的AliasSegment类(不完整):

    <?php

    namespace Zend\Mvc\Router\Http;

    use Traversable;
    use Zend\Mvc\Router\Exception;
    use Zend\Stdlib\ArrayUtils;
    use Zend\Stdlib\RequestInterface as Request;

 class AliasSegment extends Segment
 {


    public function match(Request $request, $pathOffset = null)
    {


    }

 }

我正在寻找一个小时的答案,我找不到任何东西。请告诉我至少我做错了什么,在哪里插入代码或者你知道更好的解决方案吗?

我不是在寻找现成的应用程序。我想学点东西,但如果你能详细告诉我一个答案,我将不胜感激:)

提前致谢并抱歉我的英语:)

编辑:

我的自定义路由器现在正在运行。在这个时候,别名是硬编码的,但它可以工作。

我的AliasSegment类现在看起来:

<?php

namespace Application\Controller;

use Traversable;
use Zend\Mvc\Router\Exception;
use Zend\Stdlib\ArrayUtils;
use Zend\Stdlib\RequestInterface as Request;
use Zend\Mvc\Router\Http;

class AliasSegment extends \Zend\Mvc\Router\Http\Segment
{


    public function match(Request $request, $pathOffset = null)
    {
        $uri  = $request->getUri();
        $path = $uri->getPath();

        //sample logic here
        //for /about/gallery uri set node id to 1
        //todo: get action, controller and module from navigation        
        if($path == '/about/gallery'){
            $uri->setPath('/node/1');
            $request->setUri($uri);
        }

        return parent::match($request, $pathOffset);

    }

    protected function buildPath(array $parts, array $mergedParams, $isOptional, $hasChild)
    {

        if(isset($mergedParams['link'])){
            return $mergedParams['link'];
        }

        return parent::buildPath($parts, $mergedParams, $isOptional, $hasChild);
    }

}

在这种情况下,/about/gallery/node/1的别名。两个地址都是正确的。 buildPath函数正确返回别名路径。好吧,我希望这对某些人有用:)

但是我想在Zend_Navigation中使用名为'link'的附加参数设置它。

我已经完成了我想要实现的50%,但是现在我遇到了从路由器获取Zend_Navigation的问题。我不知道如何通过它。我想它应该是这样的:

$sm = $this->getServiceLocator();
$auth = $sm->get('Navigation');

它在我的IndexController中有效但在我的AliasSegment中不起作用。我需要在导航数组节点中找到'link'参数。

修改

我找到了解决方案。答案如下。

3 个答案:

答案 0 :(得分:2)

  

无法为Application \ Controller \ AliasSegment

获取或创建实例

如果这是控制器,那么我希望在module.config.php中有:

'controllers' => array(
    'invokables' => array(
        '\Application\Controller\AliasSegment' => '\Application\Controller\AliasSegment',
    )
),

你的类的命名空间看起来有点奇怪:

  

命名空间Zend \ Mvc \ Router \ Http;

怎么样:

namespace Application\Controller;

答案 1 :(得分:1)

好的,我已经成功了。这个线程的重要内容: ZF2: How to get Zend\Navigation inside custom route?

您可以使用任何细分类型路线。但这可能需要对match函数进行一些修改。

如果导航的单个页面将具有“链接”参数,则该网址将转换为“链接”字符串,但其他参数将保留在其后面。只需将其视为当前路由的默认URI的叠加层。

我必须稍微修改我的自定义路由类。首先,我必须将其名称空间更改为Application\Router。这是一个完整的课程:

// EDIT - file within ModuleName/src/Router/Alias.php
namespace Application\Router;

use Traversable;
use Zend\Mvc\Router\Exception;
use Zend\Stdlib\ArrayUtils;
use Zend\Stdlib\RequestInterface as Request;
use Zend\Mvc\Router\Http;

class Alias extends Http\Segment
{
    private static $_navigation = null;

    public function match(Request $request, $pathOffset = null)
    {
        $uri  = $request->getUri();
        $path = $uri->getPath();


        $items = self::$_navigation->findAllBy('route', 'node');
        $params = null;

        if($items != null){
            $t = sizeof($items);
            for ($i=0; $i < $t; $i++) { 
                $item = $items[$i];
                $params = $item->getParams();
                if (isset($params['link']) && $params['link']==$path){
                    $uri->setPath('/'.$item->getRoute().'/'.$params['id']);
                    $request->setUri($uri);
                    break;
                }
            }
        }

        return parent::match($request, $pathOffset);
    }

    public function setNavigation($navigation){
        self::$_navigation = $navigation;
    }

    protected function buildPath(array $parts, 
                                 array $mergedParams, $isOptional, $hasChild)
    {

        if(isset($mergedParams['link'])){
            return $mergedParams['link'];
        }

        return parent::buildPath($parts, $mergedParams, 
                                               $isOptional, $hasChild);
    }

}

这是module.config.php的示例部分:

'navigation' => array(
        // The DefaultNavigationFactory we configured in (1) uses 'default' as the sitemap key
        'default' => array(
            // And finally, here is where we define our page hierarchy
            'account' => array(
                'label' => 'Account',
                'route' => 'node',
                'params' => array(
                            'id' => '2',
                            ),
                'pages' => array(
                    'home' => array(
                        'label' => 'Dashboard',
                        'route' => 'node',
                        'params' => array(
                                    'id' => '8',
                                    'link' => '/about/gallery'
                                    ),

                    ),
                    'login' => array(
                        'label' => 'Sign In',
                        'route' => 'node',
                        'params' => array(
                                    'id' => '6',
                                    'link' => '/signin'
                                    ),

                    ),
                    'logout' => array(
                        'label' => 'Sign Out',
                        'route' => 'node',
                        'params' => array(
                                    'id' => '3',
                                    ),
                    ),
                ),
            ),
        ),
    ),
    'router' => array(
        'routes' => array(

            'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
            ),
            'node' => array(
                'type'    => 'Application\Router\Alias',
                'options' => array(
                    'route'    => '/node[/:id]',
                    'constraints' => array(
                        'id' => '[0-9]+'
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Application\Controller',
                        'controller'    => 'Index',
                        'action'        => 'index',
                        'id'            => '0'
                    ),
                ),
                'may_terminate' => true,
            ),

        ),
    ),

答案 2 :(得分:0)

如果仅适用于/about/about/galery之类的路线,那么您只需使用带子路线的文字路线

'about' => array(
    'type' => 'literal',
    'options' => array(
        'route' => '/about',
        'defaults' => array(
            'controller' => 'module-controller-about',
            'action'     => 'index'
        )
    ),
    'may_terminate' => true,
    'child_routes' => array(
        'galery' => array(
            'type' => 'literal',
            'options' => array(
                'route' => '/galery',
                'defaults' => array(
                    'controller' => 'module-controller-galery'
                )
            )
        )
    )
)

对于像/blog/1-my-great-seo-title这样的网址,您可能需要设置一个正则表达式路由(这是最慢的,文字是最快的)。

也许请查看DASPRiDs Slides from his Router Presentation