Hi,
I have a problem with an app that uses a REST API on a remote server.
It seems that the app sends the same request (post or get) many times.
Especially when the server is busy.
Is it possible?
I’m using HttpClient with simple get and post queries:
import {HttpClient, HttpHeaders} from '@angular/common/http';
....
return this.httpClient.post(commandUrl,
commandBody,
{headers: this.getWsHeader(), responseType: responseType});
If HttpClient sends many requests, is it possible to disable this behavior?
Thank you very much
Claudio