我有以下代码,codeigniter,它发送了一封电子邮件通知
public function add__email_notification () {
$message_body = $this->load->view('content/emailer/new_user', $data, TRUE);
$this->email_notification($this->input->post('email'), $message_body);
$result['result'] = "Notification Sent";
echo json_encode($result);
}
我想要这部分功能,
echo json_encode($result);
使用ajax将数据发送回浏览器,ajax代码为
$.ajax({
type : 'POST',
url : result.url,
data : {
'email' : result.email
},
dataType : 'JSON',
success : function (e) {
console.log(e);
},
error : function (e) {}
});
但是这种方法的问题是,它没有返回json数据来确定这一部分
success : function (e) {
console.log(e);
},
ajax的。
有人知道怎么做吗?