Yii - 使用 Ajax 验证 [英] Yii - Using Ajax Validation

查看:21
本文介绍了Yii - 使用 Ajax 验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在表单中启用 ajax 验证,我已经向表单添加了正确的参数,但它不起作用,这是我的代码:

I'm trying to enable ajax validation in a form, I've added the right parameters to the form, but it's not working, here's my code:

<?php $form=$this->beginWidget('CActiveForm', array(
    'id'=>'user-form',
    'enableAjaxValidation'=>true,
    'htmlOptions' => array(
            'enctype' => 'multipart/form-data',
            'enableClientValidation'=>true
    ),
)); ?>

请指教.

推荐答案

在您的操作顶部,添加以下几行:

In the top of your action, add the following lines:

if(isset($_POST['ajax']) && $_POST['ajax']==='user-form'){
    echo CActiveForm::validate($model);
    Yii::app()->end();
}

这篇关于Yii - 使用 Ajax 验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆