我有以下形式:CakePHP的驗證工作不
<?php echo $this->Html->image('itemdefault.gif',array('class'=>'image1')); ?>
<?php echo $this->form->input('quantity',array('class'=>'input')); ?><br>
<?php echo $this->form->input('SpecialInstructions', array('type'=>'select','style'=>'font-size:13pt;width:120px;','options'=>$spec_ins)); ?><br>
<?php echo $this->form->input('Ingredients',array('class'=>'input')); ?><br>
<?php echo $this->form->end('Save',array('class'=>'button1'));
,這是在模型驗證:
var $validate=array
(
'quantity'=>array
(
'numeric'=>array('rule'=>'numeric','required'=>true,'message'=>'Enter numbers only'),
'qty_must_not_be_blank'=>array('rule'=>'notEmpty','message'=>'Quantity cannot be left blank')
),
'Ingredients'=>array
(
'body_must-not_be_blank'=>array('rule'=>'notEmpty','message'=>'Body must not be blank')
)
);
但沒有驗證的工作。是因爲這些字段不存在於我的數據庫中?
您如何知道驗證無效?你是怎麼測試的? –
在您的問題中加入更多詳細信息以進行澄清 – Anubhav