查看关于ci-ajax-csrf-problem的解决方案后,我在脚本中添加了以下行,它工作正常。
var post_data = {
'<?php echo $this->security->get_csrf_token_name(); ?>' : '<?php echo $this->security->get_csrf_hash(); ?>'
}
插入
$.ajax({
url: '<?php echo base_url()."ajax/test";?>',
type:'POST',
dataType: 'json',
data: post_data,
谢谢大家的帮助:)
我是 Ajax/Jquery 的新手,并且正在遵循jorge torres的 Ajax for CodeIgniter 指南在我的网站上实现一个简单的 ajax 调用并遇到了问题。
我创建了一个控制器 Ajax,这是代码片段。
class Ajax extends CI_Controller {
public function __construct() {
parent::__construct();
}
public function test() {
$output_string = 'This is a test';
echo json_encode($output_string);
}
public function test2(){
$this->load->view('test.php');
}
}
这是该控制器的视图,它与教程中的视图相同,只是我添加了加载 url 帮助器 $this->load->helper('url'); 在第一行
这是脚本代码的片段。
#getdata 是按钮类型,#result_table 是 div
$('#getdata').click(function(){
$.ajax({
url: '<?php echo base_url().'ajax/test';?>',
type:'POST',
dataType: 'json',
success: function(output_string){
$('#result_table').append(output_string);
} // End of success function of ajax form
}); // End of ajax call
});
我可以成功访问localhost.com/codeigniter/ajax/test2但是当我单击按钮时,什么也没有发生。
我尝试查看页面源信息,并且 url 是正确的
$.ajax({
url: 'http://localhost/codeigniter/ajax/test',
type:'POST'
....
也可以直接访问localhost/codeigniter/ajax/test并显示输出消息。
我正在使用 CodeIgniter 2.1.3,我的本地主机在 XAMPP 1.7.3 上运行
先感谢您 :)