在Google App Engine中从Ajax调用PHP函数

时间:2014-08-05 13:51:04

标签: php codeigniter google-app-engine

您好我从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);
    }

但是响应始终是我视图文件中的整个脚本。

0 个答案:

没有答案