0

私はCActiveFormこの要約を持っています:

.
.
.
'id'='email-form',
'enableAjaxValidation`=>true,
'clientOptions' => array('validateOnSubmit'=>true),
.
.
.

json objectここで、サーバー側でフォーム エラーを収集し、それをクライアントに送信するつもりです。クライアント側には、json object(form Errors)データを解析して errorSummary に設定する Jquery 関数があり、最後にフォームの 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ください。

4

1 に答える 1

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();       
                }   
        }

jquery 関数の代わりに ajaxSubmitButton を使用できます。このようなもの:

<?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.
    ));?>

これが役に立ったことを願っています。

于 2013-04-22T07:31:38.930 に答える