CodeIgniter控制器 - JSON - AJAX

B_C*_*erA 4 php ajax jquery json codeigniter

我正在尝试通过AJAX发送带有CodeIgniter的表单构建,并尝试使用JSON获取响应.但是,当我打开我的开发人员选项卡时,我只看到响应(我甚至不确定,如果它实际上是响应,因为它显示了两个json数据).

它显示的只是加载微调器,然后消失.

代码已在没有AJAX的情况下进行了测试,并且可以正常运行,因此PHP中不会出现错误.

这是我的重置密码的控制器:

<?php

Class Users extends CI_Controller {

    public function forgot_pass()
    {

    if(!$this->input->post('to_email'))
    {
    exit("No data");
    }


    $this->load->model('user');
    $email = $this->input->post('to_email');
    $email_addr = $this->user->get_email_address($email);


    if(empty($email_addr))
    {
    echo json_encode(array('pls'=>0, 'msg' => "E-mail address was not found. Try  again"));
    }

    $this->load->helper('string');
    $new_password = random_string('alnum', 8);
    $this->load->library('phpass'); 

    $update_password = array( 'password' => $this->phpass->hash($new_password));
    $update_password = $this->user->update_password($email, $update_password);

    $this->load->library('email');

    $config['newline'] = '\r\n';
    $this->email->initialize($config);

    $this->email->from('your@example.com', 'Your Name');
    $this->email->to($email);  
    $this->email->subject('New password');
    $this->email->message("Hey, " .$email_addr['name']. ". Your new password is: " .$new_password); 

    if($this->email->send())
    {
    echo json_encode(array('pls'=>1, 'msg' => "Password has been sent to given e-mail address"));
    }


}

}
?>
Run Code Online (Sandbox Code Playgroud)

这是我用jQuery编写的AJAX调用:

$(document).ready(function() {

$("form#forget_pass_form").on('submit', function(e){

            e.preventDefault();

                $("#loading_spinner").show();
                var from = $(this);

                $.ajax({

                    url: from.attr('action'),
                    type: from.attr('method'),
                    data: $(from).serialize(),
                    }).done(function(data) {



                    if(data.pls == 0) {

                        $("#forgot-pass-success").hide();
                        $("#forgot-pass-error").show();
                        $("#forgot-pass-error").fadeIn(1000).html(data.msg);

                      }

                    if(data.pls == 1) {

                        $("#forgot-pass-error").hide();
                        $("#forgot-pass-success").show();
                        $("#forgot-pass-success").fadeIn(1000).html(data.msg);
                      }

                   $("#loading_spinner").hide(); 

                });

            return false;

        });
});
Run Code Online (Sandbox Code Playgroud)

小智 10

首先,您可以尝试在Controller中设置正确的标头吗?

header('Content-Type', 'application/json');

或者更好的是:

$this->output->set_content_type('application/json');
Run Code Online (Sandbox Code Playgroud)

作为旁注,您应该确保始终返回JSON数据,因此我将删除该exit()消息并在方法的底部放置一个默认的JSON响应.

不要忘记,当你回显你的JSON时,你可以return;事后再停止在该方法中运行的任何代码.