我有这个领域:
$builder->add('offices', 'entity', array(
'class' => 'ControlPanelBundle:Offices',
'property' => 'name',
));
在我的表单中,我只使用该Offices
对象中所有可能字段中的一个字段。当我提交时,它会尝试验证所有字段。我怎样才能暂时禁用验证?
我有这个领域:
$builder->add('offices', 'entity', array(
'class' => 'ControlPanelBundle:Offices',
'property' => 'name',
));
在我的表单中,我只使用该Offices
对象中所有可能字段中的一个字段。当我提交时,它会尝试验证所有字段。我怎样才能暂时禁用验证?