The responses to most HTTP get requests are being cached in IE Edge. It doesn't happen in other browsers as far as I know. I fixed that on older versions, but How can I do it on Angular2?
any help would be appreciated.
The responses to most HTTP get requests are being cached in IE Edge. It doesn't happen in other browsers as far as I know. I fixed that on older versions, but How can I do it on Angular2?
any help would be appreciated.
A common fix is to add a random query parameter value to the request URL. You can create a custom
Http
implementation that does that for each request.