1

我已经在我的字段中尝试了以下验证。

我的字段是标题,内容。

var $validate = array('title' =>array('alphaNumeric'=>array('rule'=>'alphaNumeric','required'=>'true','message'=>'Enter a title for this post',)),
                     'content'=>array('alphaNumeric'=>array('rule'=>'alphaNumeric','required'=>'true','message'=>'Enter some content for this post',)));

但是每当我在表单中输入一些文本并尝试提交时,它都会显示错误消息...

验证有什么问题吗?

这是我的表格

<h2> Add a Post Here </h2>
Please fill in all the fields.
<?php
echo $this->form->create('Post');
echo $this->form->error('Post.title');
echo $this->form- >input('Post.title',array('id'=>'posttitle','label'=>'title','size'=>'50','maxlength'=>'255','error'=>false));
echo $this->form->error('Post.content');
echo $this->form->input('Post.content',array('id'=>'postcontent','type'=>'textarea','label'=>'Content:','rows'=>'10','error'=>false));
echo $this->form->end(array('label'=>'Submit Post'));
?>
4

2 回答 2

2

您可以使用自定义正则表达式。

'rule'    => array('custom', '[a-zA-Z0-9, ]+'),
于 2013-01-19T06:29:03.907 回答
0

我必须按如下方式更改正则表达式才能使其正常工作。

        'alphaNumeric' => array(
            'rule' => array('custom', '/[a-zA-Z0-9, ]+/'),
            'message' => 'Only letters and numbers allowed',

为什么内置的 alphaNumeric 规则不这样做呢?

于 2014-12-22T05:40:28.490 回答