我正在为处理并向轮询客户端发送通知的 asp.net 处理程序编写客户端。我每 10 秒用 jquery 进行一次 ajax 调用,等待通知。问题是每次我将响应发送回客户端时,它总是调用错误回调。使用提琴手,我看到 json 响应以状态 200 到达客户端,但在萤火虫中,请求一直在等待。
客户:
function poll(){
$.ajax({
url: "http://localhost:53914/NotificationChecker.ashx",
data: { userName: "ggyimesi" },
type: 'POST',
success: function(data){
alert("asd");
$('div#mydiv').text(data.Text);
},
complete: poll,
error: function(data){alert(data.status);},
timeout: 15000 });
}
$(document).ready(function(){
poll();}
);
服务器:
Response response = new Response();
response.Text = this.MessageText;
response.User = Result.AsyncState.ToString();
string json = JsonHelper.JsonSerializer<Response>(response);
Result.Context.Response.ContentType = "application/json";
Result.Context.Response.Write(json);