Other verbs work fine to my api but delete doesn't fire anything in the network tab on chrome Dev tools
I guess that you forgot to subscribe on the request. Observables are lazy so you need to subscribe to actually execute them. It must be done even if you don't expect a payload in the response.
Something like that:
this.http.delete().subscribe((res) => {
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With