Jul 27, 2017 · 1 min read
Actually this:
.map((event: HttpEvent<any>) => {
doesn’t work unless I replace it with
.do((event: HttpEvent<any>) => {
https://angular.io/guide/http#intercepting-all-requests-or-responses helped me with this.
Actually this:
.map((event: HttpEvent<any>) => {
doesn’t work unless I replace it with
.do((event: HttpEvent<any>) => {
https://angular.io/guide/http#intercepting-all-requests-or-responses helped me with this.