无法从CodeIgniter中的表单提交运行同步jQuery ajax请求

时间:2012-11-27 13:43:12

标签: php jquery ajax codeigniter

我有一个js函数,它被一个表单上的动作调用两次,一次是当用户通过jQuery.change在字段中输入文本时,第二次是在提交表单时。提交表单时,它会调用函数来执行ajax请求,然后它应该根据返回值停止或继续提交表单。我似乎得到的只是'未定义'的返回值。

被调用的函数是......

function cf_check_course_slug() {
    // check the slug name is unique
    var course_id = $('#Course_Id').val();
    var course_slug = $('#Slug').val();
    if(course_slug!='') {
        // call script via ajax and ensure it is not already assigned
        $.ajax({
            type:   "GET"
        ,   url:    "/courses/course_slug"
        ,   data:   { cid: course_id, slug: course_slug }
        ,   async:  false
        }).done(function(response) {
            // if we have a duplicate course slug then notify user
            if(response=='duplicate') {
                showErrorMessage('The SLUG created from the LINK NAME you have entered is already being used by another course, please edit the LINK NAME.')
                return false;
            } else {
                return true;
            }
        });
    }
}

提交表单时,它会在javascript ...

中触发以下代码
$(document).ready(function () {

    // check we are in the correct module before firing this script
    if($('#course-form').length > 0) {

        // check the link name has created a unique slug
        $('#LinkName').change(function() {
            cf_check_course_slug();
        });


        // check the course record form prior to saving
        $('form').submit(function() {
            if(!cf_check_course_slug()) {
                return false;
            }
        });

    }

});

此cf_函数调用CI中的控制器,该控制器对数据库执行检查以检查slug是否重复并返回字符串'duplicate'(如果是)。如果我更新链接名称并且检查.change。

,它的工作正常

我认为它必须是函数的异步设置的问题,好像我手动将其编码到提交js中,它按预期工作 - 尽管,我宁愿保持尽可能干。

任何指针都会很棒。

更新#1 下面是控制器中的以下代码,它是从javascript函数调用的。

function course_slug() {

        // first check this request has come via ajax
        if($this->input->is_ajax_request()) {

            $iCourse_Id = $this->input->get('cid', true);
            $sSlug = $this->input->get('slug', true);

            // load the model and data
            $this->load->model('Course_Model');
            $aCourses = $this->Course_Model->get_courses_by_category();

            // check each course and perform a check on the slug
            $output = '';
            foreach($aCourses as $aCourse) {
                // if we are dealing with an existing course, omit the Course_Id from the course dataset
                if($iCourse_Id && is_numeric($iCourse_Id)) {
                    if($aCourse['Course_Id']!=$iCourse_Id && $aCourse['Active']==1 && $aCourse['Slug']==$sSlug) {
                        $output = 'duplicate';
                    }
                } else {
                    // we are dealing with a new course, check through ALL courses in the dataset
                    if($aCourse['Slug']==$sSlug) {
                        $output = 'duplicate';
                    }
                }

            }

            // spit out the result
            $this->output->set_content_type('application/json')->set_output(json_encode($output));

        } else {
            // redirect to course homepage
            redirect('courses'); 
        }

    }

1 个答案:

答案 0 :(得分:2)

您的网址部分应为

url:    "< ?php echo site_url("/courses/course_slug"); ?>"

*您需要加载url帮助程序才能使用site_url()或base_url()函数。

$this->load->helper("url");

而不是

url:    "/courses/course_slug"

如果使用标准的htaccess,相对url并不总是在codeigniter中工作,因为codeigniter使用index.php创建nice_url选项,因此你的url应该是类似localhost / index.php / courses / course_slug和您添加的内容是localhost / courses / course_slug,如果没有重写引擎,这将无法正常工作。

虽然如果你也可以发布php脚本,为什么你得到一个未定义的响应会更有帮助。