如何在jQuery 3.0中中止AJAX请求?
this.r = $.ajax();
promise没有像旧版jQuery版本那样的中止方法
if(this.r && this.r.state() == 'pending')
{
this.r.abort(); <- error not working
}
答案 0 :(得分:1)
在jQuery 3.0中,jQuery.Deferred是Promises / A +兼容的。 The cancellation spec仍处于开发阶段,因此目前无法中止AJAX请求。
另请参阅Status of cancellable promises以获取有关规范的一些背景信息。