我正在嘗試使用jquery和codeigniter框架執行ajax請求,但是當我嘗試訪問服務器頁面時,我有一個禁止訪問。禁止codeigniter的Ajax請求
這裏是我的jQuery代碼:
$('#btHello').click(function() {
var name = $('#name').val();
alert(name);
$.ajax({
type:'POST',
data:'name='+ name,
url:'<?php echo base_url();?>index.php/AjaxTest/ajaxtest',
success: function(result, status){
$('#result1').html(result);
},
error: function (result, status, error) {
alert(error);
}
});
});
錯誤警報只是顯示 「禁止」,僅此而已。
有誰知道這是什麼問題?
這裏的CONTROLER:
class AjaxTest extends CI_Controller {
public function index() {
$this->load->view('home/head');
$this->load->view('home/nav');
$this->load->view('test/ajaxTest');
$this->load->view('home/foot');
}
public function ajaxTest(){
$name = $this->input->post('name');
echo 'Hello '.$name;
}
}
我怎麼知道它是否接受POST方法? – iAmoric
我想這是相關的:http://stackoverflow.com/questions/32478355/ajax-csrf-403-forbidden-codeigniter –
我可以看到控制器? –