0

我有一个 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 是否重复,如果是则返回字符串“重复”。如果我更新链接名称并检查.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'); 
        }

    }
4

1 回答 1

2

您的 url 部分应该是

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 脚本,那么对于为什么会收到未定义的响应会更有帮助。

于 2012-11-27T15:13:00.180 回答