我写了一个简单的 WCF 方法。它返回正确的值,但它显示 200
$.ajax({
url: "http://localhost:60770/Service.svc/GetContacts?calback=?",
type: "POST",
dataType: "JSON",
contentType: "application/json",
data: "{}",
crossDomain: true,
processdata: true,
success: function (response) {
// var data = response;
alert("data.FirstName");
},
error: function (e) {
alert('error ' + e.status + ' ' + e.responseText);
}
});
它会出错,当我使用 FireBug 检查响应时。它在那里显示 Json。
请帮忙!!