我是使用zf2的新手,我正在使用Album控制器跟随教程。添加相册时,浏览器会停留在带有空白html页面的album / add(url)上,而不是重定向到/ album / index。你能告诉我发生了什么吗?我在某个地方忘了参数?重定向真的重定向吗? 这是代码:
控制器相册:
public function addAction() {
$form = new AlbumForm();
$form->get('submit')->setValue('Add');
$request = $this->getRequest();
if ($request->isPost()) {
$album = new Album();
$form->setInputFilter($album->getInputFilter());
$form->setData($request->getPost());
if ($form->isValid()) {
$album->exchangeArray($form->getData());
$this->getAlbumTable()->saveAlbum($album);
// Redirect to list of albums
return $this->redirect()->toRoute('album',array('controller'=>'album', 'action'=>'index'));
}
}
return array('form' => $form);
}
路线:
'router' => array(
'routes' => array(
'album' => array( // album is the name of the route. Tout url localhost/album...
'type' => 'segment',
'options' => array(
'route' => '/album[/][:action][/:id]', // ...matchera l'action correspondante dans le controlleur...
'constraints' => array( // ...index est l'action par defaut si pas d'action renseignée dans l'url
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
答案 0 :(得分:0)
解决!这与ZF2没什么关系。我不得不重新安装Wampserver另一个原因,现在一切正常!!但我不确切地知道它失败的原因。