0

我有一个用户实体,在编辑操作中我展示了一个表单来编辑用户。我想有一个可用的密码字段。如果密码为空,那么我想更新除密码之外的所有字段,如果输入了某些内容,那么所有字段都会被更新。

这是我的控制器动作。

public function editUserAction() {
    $id = (int) $this->params()->fromRoute('id', 0);
    if (!id) return $this->redirect()->toRoute('index', array('action' => 'users));
    $objectManager = $this->getServiceLocator()->get('Doctrine\ORM\EntityManager');
    $form = new UserForm($objectManager);
    $user = $objectManager->find('Application\Entity\User', $id);
    $form->bind($user);
    if ($this->request->isPost()) {
        $form->setData($this->request->getPost());
        if ($form->isValid()) {
            $data = $this->request->getPost();
            if ($data->user['password'] == '') {
                // how to save all but one field
            }
            else {
                $objectManager->persist($user);
                $objectManager->flush();
            }
        }
    }
}
4

1 回答 1

0

使用删除方法:

vendor/zendframework/zendframework/library/Zend/Form/Fieldset.php remove 删除命名元素或字段集 参数:字符串 $elementOrFieldset PHPDoc not found 返回: 类型:FieldsetInterface

if ($data->user['password'] == '') 
{

        $form->remove('password');
        $objectManager->persist($user);
        $objectManager->flush();
}
于 2013-10-16T13:20:11.473 回答