我非常想创建一个模型服务器,它(现在)为我提供 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
});
}