如何中止jQuery 3.0 AJAX请求?

时间:2016-11-04 11:11:12

标签: javascript jquery ajax es6-promise jquery-3

如何在jQuery 3.0中中止AJAX请求?

this.r = $.ajax();

promise没有像旧版jQuery版本那样的中止方法

if(this.r && this.r.state() == 'pending')
{
  this.r.abort(); <- error not working
}

1 个答案:

答案 0 :(得分:1)

在jQuery 3.0中,jQuery.Deferred是Promises / A +兼容的。 The cancellation spec仍处于开发阶段,因此目前无法中止AJAX请求。

另请参阅Status of cancellable promises以获取有关规范的一些背景信息。