C ++模型服务器返回JSON不起作用

时间:2013-02-17 22:59:16

标签: jquery ajax json

我非常想创建一个模拟服务器,它给我(现在)硬编码结果给JSON查询。现在我只是从服务器返回格式正确的JSON文本。

但是,在下面的代码中,我从错误函数中得到以下内容:

LoadingPage状态出错:错误响应文本=未定义错误未定义

我想知道这是因为我的服务器还是客户端的代码有问题。你觉得怎么样?

非常感谢! 麦克

以下是代码:

$(document).ready( function () {
    LoadingPage();
} );

//-----------------------------------------------------------------------------------------------------------------------------------------------------------

function LoadingPage()
{
    alert("In LoadingPage");

    $.ajax({
            type: "GET",
            url: "localhost",
            success: function(result)
                {                       
                  alert('poopoo');
                },
            error: function(xhr, status, error)
                {
                  alert("Error in LoadingPage status: " + status + "   Response text= "+xhr.responseText + "   Error was " + error.statusText);
                },


            async:true
            });    
}

1 个答案:

答案 0 :(得分:0)

请求看起来不错,请确保响应格式正确。根据{{​​3}} 正确的反应至少应该是这样的:

HTTP/1.0 200 OK\r\n
\r\n
<content goes here>