如何取消请求

时间:2017-08-14 12:22:25

标签: javascript angularjs promise cancellation

我有功能:

$scope.openNode = function (user) {

  var req = {
    method: 'GET',
    url: '/api/user/',
    headers: {
      'Content-Type': 'application/json'
    }
  };

  $http(req).then(function (response) {
    //smth do
  }, function () {

  });

};

我按下按钮此功能被激活。如果我再次戳,则重复请求。如何取消或忽略先前的请求?

0 个答案:

没有答案