我有一个带有几个模块及其路线的 ZF2 应用程序。一切都很好。但我想自定义创建 URL 的方式,而不必重写我的所有视图。
让我们考虑以下路线:
'routes' => array(
'moduleName' => array(
'type' => 'segment',
'options' => array(
'route' => '/moduleName/[:title]-[:id][/:action]
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'moduleName\Controller\moduleName',
'action' => 'index',
),
),
),
我对“标题”没有任何限制,因为它可以是包含欧洲特殊字符和/或空格的字符串。urlhttp://domain/moduleName/J'ustAn éxample-28/create
工作正常,但我希望它的格式正确:http://domain/moduleName/j-ustan-example-28/create
有没有办法在我的配置文件中很好地做到这一点?Module.php 的?甚至“更高”?
编辑我尝试构建一个新的 Url Helper(基于这个问题Extending Zend\View\Helper\Url in Zend Framework 2):
namespace Application\View\Helper;
use Zend\View\Helper\Url as ZendUrl;
class Url extends ZendUrl {
public function __invoke($name = null, array $params = array(), $options = array(), $reuseMatchedParams = false) {
foreach($params as $param => $value) {
$params[$param] = $this->cleanString($value);
}
$link = parent::__invoke($name, $params, $options, $reuseMatchedParams);
return $link;
}
public function cleanString($string) {
$string = str_replace(array('[\', \']'), '', $string);
$string = preg_replace('/\[.*\]/U', '', $string);
$string = preg_replace('/&(amp;)?#?[a-z0-9]+;/i', '-', $string);
$string = htmlentities($string, ENT_COMPAT, 'utf-8');
$string = preg_replace('/&([a-z])(acute|uml|circ|grave|ring|cedil|slash|tilde|caron|lig|quot|rsquo);/i', '\\1', $string );
$string = preg_replace(array('/[^a-z0-9]/i', '/[-]+/') , '-', $string);
return strtolower(trim($string, '-'));
}
}
但我不能让它工作。我把它放在 \Application\Module.php 中:
public function getViewHelperConfig()
{
return array(
'factories' => array(
'Application\View\Helper\Url' => function ($sm) {
$serviceLocator = $sm->getServiceLocator();
$view_helper = new \Application\View\Helper\Url();
$router = \Zend\Console\Console::isConsole() ? 'HttpRouter' : 'Router';
$view_helper->setRouter($serviceLocator->get($router));
$match = $serviceLocator->get('application')
->getMvcEvent()
->getRouteMatch();
if ($match instanceof RouteMatch) {
$view_helper->setRouteMatch($match);
}
return $view_helper;
}
),
);
}
但它不起作用并且不显示任何错误。