$.ajax({
url: "index.php?action=log",
data: $("#aa").serialize(),
dataType: "json",
type: "POST",
success: function(res) {
if(res.status == "ok") {
window.location = "index.php";
} else {
$('#msg').html(res.msg);
}
}
});
我要是请求IndexController.class.php 下的indexAction() 方法 是这样写吗:
url: "index.php?action=index",
@yangzailu1990:那需要看你的入口文件了.怎么跳转?直接写你的跳转链接就可以了.你可以进去你的项目里index.php?action=index看一下有这个页面没有.
@锦瑟_华年: 我不是要跳转,而是要提交数据给后台。url写的是方法位置。
@yangzailu1990: URL 就是要到你要跳转的controller 然后在做数据处理.
@锦瑟_华年: 嗯 谢谢
不用./就行了