这是我的代码。在我的表单配置中,我写道:
$this->embedI18n(array('en', 'bg'));
$this->widgetSchema->setLabel('en', 'English');
$this->widgetSchema->setLabel('bg', 'Bulgarian');
在我的操作中,我尝试以这种方式保存此表单:
$agree= Doctrine_Core::getTable('agreements')->findOneById('1');
//Myuser::pd($agree);
$this->form= new agreementsForm($agree);
if ($request->isMethod('post'))
{
$this->form= new agreementsForm($agree);
$this->form->bind($request->getParameter($this->form->getName()));
if ( $this->form->isValid())
{
$agree=$this->form->save();
//$this->redirect('homepage');
}
}
当我单击编辑时,我会看到这两种语言的表单和每种语言的值,但是当我尝试保存表单时,它不想保存。