您好我从ajax调用php函数有问题,但返回的是html脚本。我在我的框架中使用了CI。
例如,在我的视图页面中,我有:
$.ajax({
url:"/home/loginUser",
type:"post",
dataType: "json",
success: function(result){
alert(result.result);
}
})
在我的控制器中我有:
function loginUser(){
header('Content-Type: application/json');
$response = array(
'result' => false
);
echo json_encode($response);
}
但是响应始终是我视图文件中的整个脚本。