フォームフィールドの値をリセットするにはどうすればよいですか?
action:
$this->form = new $class();
$this->form->bind($request->getParameter('signin'));
if ($this->form->isValid())
{
$values = $this->form->getValues();
$this->redirect('@example');
}
else
{
if ($this->form->hasGlobalErrors())
$this->errorclass = 'error';
}
$this->form->resetFormFields();
return $this->renderPartial('ajax/example);
私は2つのフィールドemailとpwを持っています:それらが空であるというエラーの後にそれらをリセットしたい
これは機能しません:(
$this->form->resetFormFields();
解決策はありますか?よろしくお願いします