|
本帖最后由 valleyss 于 2017-1-23 18:04 编辑
我用jQuery load 载入页面 通过控制器查询数据库。出错后可以得到返回的500错误。但是jquery 无法load错误页面。流程是这样js代码:
function query_dlynex() {
aa= 获取值;
$("#show_dlynex").load(url + "index.php/dlynex/dlynex/", {
aa:aa,
},function(responseTxt,statusTxt,xhr)
{
if(statusTxt=="error")
alert("错误: "+xhr.status+": "+xhr.statusText);
})
}
控制器代码:
public function dlynex()
{
$aa=post传递过来的值 $data['dlynex'] = $this->dlynex_model->get_dlyndx($aa);
//提交到model里面数据库查询出错。
$this->load->view('show/showdlynex',$data);
}
正常整页刷新可以看到错误码和提示。现在的问题是请问怎么让jQuery load 错误页面
|
|