我有CActiveForm
这个摘要:
.
.
.
'id'='email-form',
'enableAjaxValidation`=>true,
'clientOptions' => array('validateOnSubmit'=>true),
.
.
.
现在我打算在服务器端收集表单错误并通过json object
将其发送到客户端。在那里的客户端
is和Jquery函数解析json object(form Errors)
并将数据设置为errorSummary,最后
显示表单的errorSummary。
我没有任何问题,我的问题是以下功能不收集表单错误:
protected function getErrorSummary($model)
{
if(isset($_POST['ajax']) && $_POST['ajax']==='email-form'){
$errors=CActiveForm::validate($model);
if($errors !== '[]')
Yii::app()->end($errors);
}
}
但是以下收集表格错误:
protected function getErrorSummary($model)
{
$errors=CActiveForm::validate($model);
if($errors !== '[]')
Yii::app()->end($errors);
}
请注意,这两个函数都真正作用于validateOnChange
。
答案 0 :(得分:1)
我在控制器中使用这样的东西:
if(Yii::app()->request->isAjaxRequest)
{
$error=CActiveForm::validate($model);
if($error!='[]'){
echo $error;
Yii::app()->end();
}
}
if(isset($_POST['Lists']))
{
$model->attributes=$_POST['Lists'];
if($model->save())
{
echo CJSON::encode(array(
'status'=>'success',
));
Yii::app()->end();
}
}
您可以使用ajaxSubmitButton而不是jquery函数。像这样:
<?php echo CHtml::ajaxSubmitButton ($model -> isNewRecord ? 'Create' : 'Save' , Yii::app()->request->url, array (
'dataType' => 'json',
'type'=>'post',
'success' =>
'js:function (data) {
if(!$.isEmptyObject(data)) {
$.each(data, function(key, val) {
$("#lists-form #"+key+"_em_").text(val+" ");
$("#lists-form #"+key+"_em_").parent(".error_wrapter").addClass("error");
$("#lists-form #"+key+"_em_").css(\'display\',\'block\');
});//here you show your errors on form fields from JSON object
};
if(data.status=="success"){
//here you can use custom notifications or redirect
}
else {
//here you can display errorsummary or notifications
};
}',
), array (
'id' => 'lists-form_submit_'.rand(1,255), // Need a unique id or they start to conflict with more than one load.
));?>
希望这会有所帮助。