默认情况下,页面设置像这样的Application
module.config阵:
'template_map' => array(
'error/404' => __DIR__ . '/../view/error/404.phtml'
我想改变页面。 我想新的ViewModel
为它充满变数。 这意味着,只要更改模板是不够的:
'error/404' => __DIR__ . '/../view/error/my_new_404_template.phtml'
但是我不知道如何做到这一点。 我看不到的请求到达的方式'error/404'
。
如何创建新的ViewModel
呢?
如何变量重视它?
路线如何来'error/404'
抓住它的变化?
例如,我有这样的方法'error/404'
页:
public function pageNotFoundAction() {
$view = new ViewModel();
$view->setTemplate('error/404'); // set my template
$sm = $this->getServiceLocator()->get('SessionManager');
$cont = new Container('SomeNamespace', $sm);
$view->var1 = $cont->offsetGet('someValue1'); // the "error/404" template
$view->var2 = $cont->offsetGet('someValue2'); // is full of variables
$view->var3 = $cont->offsetGet('someValue3');
$view->var4 = "One more view variable";
// And now I return it somewhere and want it to be called
// in case of "the page is not found"
return $view;
}
如何使这样的改变? 我不能让他们自己制作的处理像系统'error/404'
。 请帮忙。
UPD 1
更复杂的任务。 如何有几个'error/404'
的网页? 想问一下是谁创造他们是否知道框架家伙'not_found_template'
不能有数组'error/404'
页面。 这怎么可能呢? 如果我设置此选项是这样的:
'template_map' => array(
'error/404' => __DIR__ . '/../view/error/404.phtml',
'my-page/one_more_error404' => __DIR__ . '/../view/my-page/my-page/one_more_error404.phtml',
'other_page/second_404' => __DIR__ . '/../view/other-page/one_more_error404.phtml',
'not_found_template' => array(
'error/404',
'my-page/one_more_error404',
'other-page/second_404',
);
它抛出一个错误。 'not_found_template'
迫使你只有一个'error/404'
模板?
还有另一种方法。 为了赶上一个EVENT_DISPATCH_ERROR
,完全重建viewModel
。 洞穴是布局-是一个根viewModel
,并且默认追加到布局含量为另一个viewModel
(子)。 这些点是不是在等官方的文档清晰的描述。
这里是如何可以像在Module.php
:
public function onBootstrap(MvcEvent $event)
{
$app = $event->getParam( 'application' );
$eventManager = $app->getEventManager();
/** attach Front layout for 404 errors */
$eventManager->attach( MvcEvent::EVENT_DISPATCH_ERROR, function( MvcEvent $event ){
/** here you can retrieve anything from your serviceManager */
$serviceManager = $event->getApplication()->getServiceManager();
$someVar = $serviceManager->get( 'Some\Factory' )->getSomeValue();
/** here you redefine layout used to publish an error */
$layout = $serviceManager->get( 'viewManager' )->getViewModel();
$layout->setTemplate( 'layout/start' );
/** here you redefine template used to the error exactly and pass custom variable into ViewModel */
$viewModel = $event->getViewModel();
$viewModel->setVariables( array( 'someVar' => $someVar ) )
->setTemplate( 'error/404' );
});
}
我用这个来管理404错误(我搬离SPIP我的网站基于CMS ZF2):
在模块onBootstrap功能:
$eventManager->getSharedManager()->attach('*', MvcEvent::EVENT_DISPATCH_ERROR, array($this, 'onDispatchError'), -100);
然后
public function onDispatchError(MvcEvent $event)
{
$response = $event->getResponse();
if ($response->getStatusCode() == 404) {
$url = $event->getRouter()->assemble(array(), array('name' => 'index'));
$requestUri = $event->getRequest()->getRequestUri();
$response->getHeaders()->addHeaderLine('Location', "$url?url=$requestUri");
$response->setStatusCode(200);
$response->sendHeaders();
$event->stopPropagation(true);
} elseif($response->getStatusCode() == 500){
//DO SOMETHING else?
return;
}
}
在这段代码中,我们从来没有返回404错误,我们只需要调用路径(在我的例子指数)与所请求的URL为PARAM
我希望帮助你。
我不知道我跟着你正在努力实现的是什么,你可以给你正在尝试做一个明显的例子?
如果你只是想添加变量视图模型过去了,你甚至可以做到这一点在你的控制器,请AbstractActionController
/**
* Action called if matched action does not exist
*
* @return array
*/
public function notFoundAction()
{
$response = $this->response;
$event = $this->getEvent();
$routeMatch = $event->getRouteMatch();
$routeMatch->setParam('action', 'not-found');
if ($response instanceof HttpResponse) {
return $this->createHttpNotFoundModel($response);
}
return $this->createConsoleNotFoundModel($response);
}
/**
* Create an HTTP view model representing a "not found" page
*
* @param HttpResponse $response
* @return ViewModel
*/
protected function createHttpNotFoundModel(HttpResponse $response)
{
$response->setStatusCode(404);
// Add in extra stuff from your ServiceLocator here...
// $viewModel->setTemplate(..);
return new ViewModel(array(
'content' => 'Page not found',
));
}
第一件事情就是创建访问量:
模块/ Yourapplication /视图/ yourapplication /错误/ index.phtml
模块/ Yourapplication /视图/ yourapplication /错误/ 404.phtml
第二件事是注册在模块配置的观点:
在应用程序的module.config.php
'view_manager' => array(
//[...]
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
//[...]
'error/404' => __DIR__ . '/../view/yourapplication/error/404.phtml',
'error/index' => __DIR__ . '/../view/yourapplication/error/index.phtml',
),
// [...]
),
在module.php
您还可以更改模板和布局。
function onBootstrap(EventInterface $e) {
$app = $e->getApplication();
$evt = $app->getEventManager();
$evt->attach(MvcEvent::EVENT_DISPATCH_ERROR, array($this,'onDispatchError'), 100);
}
function onDispatchError(MvcEvent $e) {
$vm = $e->getViewModel();
$vm->setTemplate('layout/blank');
}
或者更简单(如果你想):
/* @var \Zend\Mvc\View\Http\RouteNotFoundStrategy $strategy */
$strategy = $this->getServiceLocator()->get('HttpRouteNotFoundStrategy');
$strategy->setNotFoundTemplate('application/other/404');
$view = new ViewModel();
//$view->setTemplate('application/other/404');
return $view;
你应该先分离默认notfoundstrategy并在Module.php和404的情况下,你应该从控制器返回一个新的视图模型。 请看到这个帖子: http://www.cagataygurturk.com/zf2-controller-specific-not-found-page/
文章来源: ZF2 - How to change the error/404 response page? Not just template but to set a new ViewModel