我有功能:
$scope.openNode = function (user) {
var req = {
method: 'GET',
url: '/api/user/',
headers: {
'Content-Type': 'application/json'
}
};
$http(req).then(function (response) {
//smth do
}, function () {
});
};
我按下按钮此功能被激活。如果我再次戳,则重复请求。如何取消或忽略先前的请求?