新建,编辑或删除操作忽略重定向到列表视图,尽管它在控制器中定义。我添加了一些字段并更改了控制器中的键定义,现在新的,编辑或删除操作忽略了重定向到列表视图。其他所有工作,它确实创建新的或编辑记录。我错过了什么?
在控制器中更新操作:
/**
* action update
*
* @param \Vendor\Car\Domain\Model\Car $record
* @return void
*/
public function updateAction(\Vendor\Car\Domain\Model\Car $record) {
$this->addFlashMessage('The object was updated.', '', \TYPO3\CMS\Core\Messaging\AbstractMessage::ERROR);
$this->carRepository->update($record);
$this->redirect('list');
}
答案 0 :(得分:0)
修正了什么:
-List[42] // List View -> 'Exclude from speaking URL'
--Detail[43] // Detail View -> 'Hide in Menus'