- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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
时,它会路由到我应用程序默认 Controller 中的默认操作。我想要的是一个可以处理 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 中无效。我需要在带有“链接”参数的导航数组节点中找到。
编辑
我找到了解决方案。答案如下。
最佳答案
unable to fetch or create an instance for Application\Controller\AliasSegment
如果这是 Controller ,那么我希望在 module.config.php 中有:
'controllers' => array(
'invokables' => array(
'\Application\Controller\AliasSegment' => '\Application\Controller\AliasSegment',
)
),
你的类的命名空间看起来也有点奇怪:
namespace Zend\Mvc\Router\Http;
关于:
namespace Application\Controller;
关于alias - ZF2 : create url aliases in router,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13317876/
以下从 JPA 查询中获取 Spring 数据投影的方法对我不起作用: https://stackoverflow.com/a/45443776/1005607 我的 table : 查找_T id
tl;dr - 我想覆盖 OhMyZsh具有多行别名/函数的 Git 别名。 我正在尝试从 bash 切换到 zsh 并迁移我的别名。我可以通过这个(示例)覆盖 OhMyZsh 的 Git 别名: a
根据 this关于 C++11/14 严格别名规则的 stackoverflow 回答: If a program attempts to access the stored value of an
这个问题已经有答案了: How do I clone a list so that it doesn't change unexpectedly after assignment? (24 个回答)
这个问题在这里已经有了答案: Can I alias a subcommand? (shortening the output of `docker ps`) (4 个答案) 关闭 7 年前。 我知
我什至不知道它是否被称为别名,但无论如何让我继续。 您知道 C# 中的 System.String 类型是如何与“字符串”“别名”的吗?在 Visual Studio 中,“string”是小写的蓝色
练习测试问题: Consider the following code: String entree = new String (“chicken”); String side = “salad”;
我在优秀的 F# for Fun and Profit 中读到,我可以使用单案例区分联合来获得类型安全等。所以我试着这样做。但是我很快发现我无法调用被 DU(有点)别名或查看的类型的方法。 这是一个例
为什么会出现 Error in query (1064): Syntax error near 'as q2)' at line 7 与 SELECT SQL_NO_CACHE q1.d1, q1.a
我对在函数参数中使用别名有疑问。这是我的问题。 让我们考虑一下这个函数定义 void thisIsSparta(int& number){ ... } 在调用时,它与以下代码配合得很好: in
我将如何完成以下任务? >>> x={'NON_EPISODIC_MOVIE': 11} >>> for k,v in x.items(): ... k=v ... >>> NON_EPISO
' Strict aliasing ' 优化需要特别注意源代码,s.a.使用 union 而不是指针转换。有没有一种方法可以使用预处理器指令 (#if/else) 来检测编译器是否正在尝试进行此类优化
这个问题在这里已经有了答案: What is the strict aliasing rule? (11 个答案) 关闭 8 年前。 我真的很困惑。 uint8_t hash[20]; uint32
什么是“别名流缓冲区”?我在 answer 的评论中遇到了这个词我的。 最佳答案 我以前从没听过这个词,但在你引用的话题中,使用它的人还举了一个例子:两条流使用相同的 streambuf。 当然,只是
这是我的场景: public IEnumerable getSuperMercTree(string IDLanguage) { SuperMercModel SMer = null;
例如,此声明带有 deriving : {-# LANGUAGE DeriveDataTypeable, ConstraintKinds #-} import Data.Data (Data) imp
我患有the problem described here的变体: ActiveRecord assigns table aliases for association joins fairly un
我使用了 highcharts 库中的基本折线图,但我认为线条不够平滑。 有可能改进吗? 我的代码: chart: { type:'line',
创建 JavaFX 场景时,我传入 SceneAntialiasing.BALANCED 作为参数,但在我的笔记本电脑上它给了我这个警告: WARNING: System can't support
我试图用 renderEncoder 的 drawIndexedPrimitives 画一个半圆 [renderEncoder setVertexBuffer:self.vertexBuffer of
我是一名优秀的程序员,十分优秀!