这是jquery.ajax()中的有效url参数吗?
<script type="text/javascript">
$(document).ready(function() {
getRecordspage();
});
function getRecordspage() {
$.ajax({
type: "POST",url: "http://localhost/codeigniter_cup_myth/index.PHP/adminController/mainAccount",data: "",contentType: "application/json; charset=utf-8",global:false,async: false,dataType: "json",success: function(jsonObj) {
alert(jsonobj);
}
});
}
</script>
网址似乎没有进入我的控制器功能…
最佳答案
尝试将async设置为true.另外,萤火虫怎么说?
始终使用Firebug来查看实际情况.