0

Zend Framework 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()]
    );
}
4

1 に答える 1