0

codeigniter を介して ajax でいくつかのフィールドを検証しようとしていますが、それを「正しく」行う方法がわかりません。

私のアヤックス:

var timeout = null;

$(document).ready(function(){

    $('.new-user-box input').each(function(){

        var key = $(this).attr('name');

        $(this).on("keyup", function() {
            var value = $(this).val();

            if(value=="") {
                return false;
            }

            var json = {};
            json[key] = value;
            json['ajax'] = '1';

            if (timeout) {
                clearTimeout(timeout);
            }
            timeout = setTimeout( function() {
                $.ajax({
                url: 'auth/ajax_validate',
                type: 'post',
                data: json,
                success: function(data) {
                    console.log(data);
                }
                })
            }, 1000)
        });

    })

})

これにより、基本的にすべての入力フィールドがキーアップ時に値を送信できるようになります (1 秒後)。

私のphp(ユーザー名テストからのほんの一部):

<?php

    function ajax_validate()
    {

        // Test if the method is called by ajax and validate the input field
        if($this->input->post('ajax'))
        {
            if($this->input->post('username'))
            {
                if($this->form_validation->set_rules('username', 'Brugernavn', 'required|trim|min_length[1]|max_length[20]|is_unique[users.username]|xss_clean') && !$this->form_validation->run())
                {
                    $validates = 0;
                }
                else {
                    $validates = 1;
                    $error = "";
                }
                $response = array($validates,$form_error('username'));
                echo json_encode($response);
                exit;
            }
        }

    }

?>

私が受け取る応答はphpエラーです:

メッセージ: 未定義の変数: form_error

致命的なエラー: 関数名は、401 行目の \PATH TO CODEIGNITER\application\modules\auth\controllers\auth.php の文字列でなければなりません

誰かがこれを修正する方法の手がかりを持っていることを願っています. 前もって感謝します。

4

2 に答える 2

6

「form_error」の前の $ を取り出します。

$response = array($validates,$form_error('username'));

$response = array($validates,form_error('username'));
于 2013-04-05T17:51:31.317 に答える