0

我在验证我的用户是否从复选框列表中至少选中了一个选项时遇到问题。

这是我尝试过的: 我的视图如下所示:

echo $this->Form->input('market_segment_targeted', array(
   'multiple' => 'checkbox',
   'label'=>array('text' => 'Market segment targeted', 'class'=>'w120'),
   'options' => array(
                'Home users' => 'Home users',
                'SOHO' => 'SOHO',
                'SMB' => 'SMB',
                'Enterprise' => 'Enterprise'
    ),
));

在我的控制器中,我添加了这段代码:

    $validate_on_fly = array(
                         'market_segment_targeted' => array(
                        'notEmpty' => array(
    'rule' => array('multiple', array('min' => 1)),
                            'required' => true,
                            'message'  => 'Please select at least one!'
                        ))
                        )));    
    $this->Partner->validate = Set::merge(
                          $this->Partner->validate,
                          $validate_on_fly
                          );

任何想法我做错了什么?

谢谢

4

1 回答 1

0

在 CakePHP 中,您可以对复选框使用模型验证。这是一个简单的例子。

您的表单可能如下所示:

$this->Form->create('User');
$this->Form->input('User.agree', array('type'=>'checkbox', 'hiddenField'=>false, 'value'=>'0'));
$this->Form->submit('Save'):
$this->Form->end();

然后在公共 $validate 下的模型中,使用:

'agree'=>array(
  'Not empty'=>array(
    'rule'=>array('comparison', '!=', 0),
    'required'=>true,
    'message'=>'You must agree to the ToS'
    )
  )
于 2013-10-03T21:17:29.680 回答