I need to manage timeout of all backend request. This is my code…
...
var httpHeaders = this.getHeader();
return this.http.post(httpUrl, JSON.stringify(data), httpHeaders);
I tried to use timeout function but it is not present.
this.http.post(httpUrl, JSON.stringify(data), httpHeaders).timeout(10000);
What is the solution?
1 post - 1 participant