蛋糕2.1数据验证不起作用

时间:2013-07-13 01:07:44

标签: cakephp-2.1 validation

我尝试了每一种方法,但它的蛋糕php数据验证不起作用。你能告诉我什么是错误的部分吗? 我添加了所有类型的验证,但表单仍然保存而没有验证数据!

我的模特:

class contacts extends AppModel
{
    public $name = 'contact';
    public $useTable='contacts';    
    public $validate=array(
        'name' => array(
            'requierd'=>array(
                'rule'=>array('Not empty'),
                'message' => 'A username is required'
        )
        )
    );

}

我的控制器

class ContactsController extends AppController
{
    public $helpers=array('Html','Form');
    public $components=array('session','Email');

    public function index()
    {
        if($this->request->is('post'))
        {
             $this->Contact->create();
            if($this->Contact->save($this->request->data))
            {

                $this->Session->setFlash('Thank you we will contact you soon');
                $this->redirect(array('action'=>'index'));
            }
            else
            {
                $this->Session->setFlash('Unable to send your message.');
            }

        }

    }
}

我的观点:

echo $this->Form->create('Contact');
echo $this->Form->input('name');
echo $this->Form->input('email');
echo $this->Form->input('subject');
echo $this->Form->input('message',array('rows' => '3'));
//echo $this->Form->checkbox('Send me a coppy');
echo $this->Form->end('Send');

2 个答案:

答案 0 :(得分:0)

尝试

public $validate=array(
    'name' => array(
        'rule'    => 'notEmpty',
        'message' => 'A username is required'
    )
);

docs example所示。不知道为什么你增加了一个额外的阵列。

您可以将requiredallowEmpty索引添加为严格

public $validate=array(
    'name' => array(
        'rule'    => 'notEmpty',
        'message' => 'A username is required',
        'required' => true,
        'allowEmpty' => false
    )
);

答案 1 :(得分:0)

我明白了。他们不工作的原因是因为型号名称!!