我正在尝试让 ajax 与 codeigniter 安装一起工作。
这是我的 PHP 函数:
function test() {
return print_r("hey");
}
这是JS:
$.ajax({
type: "POST",
url: "http://localhost/code/test",
success: function(data) {
alert(data);
}
});
这很好用,但是,一旦我添加数据,它就不起作用了。
$.ajax({
type: "POST",
url: "http://localhost/code/test",
data: {bar:"foo"},
success: function(data) {
alert(data);
}
});
提前致谢!