Console the Title onClick

onEditPost(post: { id: any }) {
    this.http
      .patch(`${this.url}/${post.id}`, { isClicked: true }) 
      .subscribe((response: any) => {
        console.log(response.title);
      });
}
<button 
  (click)="onEditPost(post)" 
  class="btn btn-success btn-sm">
    Edit
</button>
Was this page helpful?