我有一个表格,其中的值不在我的数据库中。我不想对它们进行验证,所以我使用字段名称制定了一些验证规则。不知何故,验证规则没有被使用。
我已经尝试设置不同的规则。由于 $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.'
),
);