jQuery对话框表单提交给CodeIgniter表单验证

时间:2012-10-31 14:06:15

标签: javascript jquery ajax json codeigniter

我是ajax将表单数据从jquery对话框模式发布到我的CodeIgniter控制器,后者执行表单验证。使用FireFox时一切正常。使用IE10时,表单似乎没有提交给控制器。我发现建议将“contentType:'application / json; charset = utf-8'添加到我的jquery .ajax中 - 这似乎允许IE10开始提交表单,但CI表单验证似乎不再适用于任何一个浏览器。将contentType注释掉(如下所示)允许FireFox再次工作。

有什么建议吗?

这是我的javascript:

var dataObj = {type_id: tt_tid, rtype_id: tt_rtid, ref_id: tt_rid, time: tt_time, date: tt_date };

$.ajax({
    data: dataObj,
    cache:false,
    //contentType: "application/json; charset=utf-8",
    dataType: "json",
    type: "POST",
    url: '<?php echo base_url();?>task/tt_ajax_add',
    success: function(data) {
        //Clear the message
        $("#modal_message").html('').removeClass().css({'display' : 'none'});

        if (data.success == true) {
            $("#modal_message").html(data.message).css({'display' : 'block'}); 
            clearForm('#m_timetrack_form');
        }else{
            $("#modal_message").html(data.message).addClass('error').css({'display' : 'block'}); 
        }
    }
});

这是我的CI控制器方法

function tt_ajax_add()
{
    if ($this->input->is_ajax_request()){
        $this->load->library('form_validation');
        $validate_config = "timetrack_add";

        //Check if the form is valid
        if ($this->form_validation->run($validate_config) == FALSE ){
            $result['success'] = FALSE;
            $result['message'] = "Please correct any errors below.";
            $result['message'] .= validation_errors();
            //$result['message'] .= file_get_contents('php://input');

        #Form data was valid
        }else{
            $result['success'] = TRUE;
            $result['message'] = "Submitted successfully.";

        }
        exit(json_encode($result));
    }
    exit();
}

0 个答案:

没有答案