Angular

Last Updated: 9/4/2023

Deleting Data

  • Http delete request don't have a body
this.http.delete(url + "/" + post.id)
.subscribe(response => {
	let index = this.posts.indexOf(post);
	this.posts.splice(index, 1);
})