-3

ユーザーが自分のプロファイルデータを変更できるプロファイル編集ページがあります。ユーザー編集フォームで、ユーザーが編集する前に、以前のデータベース値をユーザーに表示したいと考えています。

4

1 に答える 1

1
public function editAction() {
    $id = $this->_request->getParam('id');

    $articleForm = new Form_Article();
    $articleForm->setAction($this->getRequest()->getPathInfo());

    if($this->getRequest()->isPost()) {
        if($articleForm->isValid($_POST)) {

           // edit logic here
        }
    }
    $articleModel = new Model_Article();

    $article = $articleModel->find($id)->current();
    $articleForm->populate($article->toArray());

    $this->view->form = $articleForm;
}
于 2012-09-08T18:02:15.187 に答える