我正在尝试 Zend 框架 3 教程,并且在深入部分(博客案例)中陷入“编辑”功能。
尝试编辑博客消息时,编辑表单不显示原始消息。似乎原始消息无法绑定到表单。
我复制了所有示例代码。我不知道它有什么问题。顺便说一句,我的添加和删除功能工作正常。
有人可以帮我吗?
教程中的editAction
方法:
public function editAction()
{
$id = $this->params()->fromRoute('id');
if (! $id) {
return $this->redirect()->toRoute('blog');
}
try {
$post = $this->repository->findPost($id);
} catch (InvalidArgumentException $ex) {
return $this->redirect()->toRoute('blog');
}
$this->form->bind($post);
$viewModel = new ViewModel(['form' => $this->form]);
$request = $this->getRequest();
if (! $request->isPost()) {
return $viewModel;
}
$this->form->setData($request->getPost());
if (! $this->form->isValid()) {
return $viewModel;
}
$post = $this->command->updatePost($post);
return $this->redirect()->toRoute(
'blog/detail',
['id' => $post->getId()]
);
}