【发布时间】:2014-06-01 03:24:50
【问题描述】:
我正在尝试通过 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"));
}
}
}
?>
这是我用 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;
});
});
【问题讨论】:
-
在 $.ajax
dataType中丢失,请在 $.ajax 调用中添加 dataType: 'JSON';也可以使用 die 或 exit 来停止脚本的执行
标签: php jquery ajax json codeigniter