我是 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 中实现此目的的教程链接: 友好的 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 中使用名为“链接”的附加参数来设置它。
我已经完成了我想要实现的 50%,但是现在我无法从路由器获取 Zend_Navigation。我不知道如何通过它。我想应该是这样的:
$sm = $this->getServiceLocator();
$auth = $sm->get('Navigation');
它适用于我的 IndexController,但不适用于我的 AliasSegment。我需要在带有“链接”参数的导航数组节点中找到。
编辑
我找到了解决方案。答案如下。