2

我有一个表格,其中的值不在我的数据库中。我不想对它们进行验证,所以我使用字段名称制定了一些验证规则。不知何故,验证规则没有被使用。

我已经尝试设置不同的规则。由于 $hasMany 连接有效,因此文件名正确。

我希望你能帮忙!

形式:

<?php
  echo $this->Form->create('Map');
    echo $this->Form->input('min_x');
    echo $this->Form->input('max_x');
    echo $this->Form->input('min_y');
    echo $this->Form->input('max_y');
  echo $this->Form->end('Submit');
?>

验证规则:

public $validate = array(
  'min_x' => array(
    'rule' => 'Numeric',
    'message' => 'Please enter a numeric value.'
  ),
  'max_x' => array(
    'rule' => 'Numeric',
    'message' => 'Please enter a numeric value.'
  ),
  'min_y' => array(
    'rule' => 'Numeric',
    'message' => 'Please enter a numeric value.'
  ),
  'max_y' => array(
    'rule' => 'Numeric',
    'message' => 'Please enter a numeric value.'
  ),
);
4

2 回答 2

0

在所有消息的末尾必须有','。

'max_x' => array(
    'numeric' => array(
        'rule' => 'numeric',
        'message' => 'Please enter a numeric value.',
    )
  ),
于 2013-08-09T14:29:40.450 回答
0

验证规则区分大小写,因此:

'rule' => 'Numeric',

应该改为

'rule' => 'numeric',

对于每个实例。

最后一个字段的数组上还有一个额外的逗号。


public $validate = array(
  'min_x' => array(
    'numeric' => array(
        'rule' => 'numeric',
        'message' => 'Please enter a numeric value.'
    )
  ),
  'max_x' => array(
    'numeric' => array(
        'rule' => 'numeric',
        'message' => 'Please enter a numeric value.'
    )
  ),
  'min_y' => array(
    'numeric' => array(
        'rule' => 'numeric',
        'message' => 'Please enter a numeric value.'
    )
  ),
  'max_y' => array(
    'numeric' => array(
        'rule' => 'numeric',
        'message' => 'Please enter a numeric value.'
    )
  )
);
于 2013-08-07T13:58:22.710 回答