我对sfValidatorChoice有些问题。这是选择的数组:
$branches = array(123 => 'Value 1', 456 => 'Value 2', 789 => 'Value 3')
其中数字为ID。要使用默认值,我执行此操作:
$choices_branches = array_merge(array('default' => 'Bitte wählen'), $branches);
在表单类中,我这样做:
$this->setWidgets(array(
'branches' => new sfWidgetFormChoice(array(
'choices' => $choices_branches,
'expanded' => false,
)),
...))
这是验证器:
$this->setValidators(array(
'branches' => new sfValidatorChoice(array('choices' => array_keys($branches))),
...
))
但是当我选择例如值1并尝试提交表单时,我会收到无效错误。
有人可以帮忙吗?
答案 0 :(得分:2)
来自php.net
不要忘记数字键会重新编号!
您应该执行以下操作:
$choices = array(123 => 'Value 1', 456 => 'Value 2', 789 => 'Value 3');
$this->setWidget('branches', new sfWidgetFormChoice(array(
'choices' => array('' => 'Bitte wählen') + $choices,
'expanded' => false,
));
$this->setValidator('branches', new sfValidatorChoice(array(
'choices' => array_keys($choices),
));