I need to make a mail request in which I am not interested in the answer (Fire And Forget)
I found a way to do this
xhr.onreadystatechange = function() { xhr.abort(); }
source
But in angular everything is a little different. For example, when using$http
var promise = $http.post(url, data);
I do not see how I can get the object xhr? Any suggestions?
source
share