You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
getAllActivities() method
getActivities(){
this.activityService.getAllActivity().subscribe((data: Activity[] )=>{
this.activities = data;
console.log(this.activities);
});
} CMS cervice class /getAllactivity method
getAllActivity():Observable<Activity[]>{
return this.http.get<Activity[]>(this.activityUrl);
} this is delete method which is in CMS service
deleteActivity(activityId: string):Observable{
let httpHeaders = new HttpHeaders().set('Content-type','application/json');
let options={
headers:httpHeaders
};
return this.http.delete(this.activityUrl+"/"+activityId);
} Service Class Activity.ts
The text was updated successfully, but these errors were encountered:
Please check this bug so that can fix my error in my project. In my project ,Testimonial components in which it works fine but in this the same code for delete the activity it will delete the content only . this is screan short of the inspection you can see in the screan short whien we delete the object it delete content only not the object
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
clickToDelete() method
clickToDelete(activityId: string){
this.activityService.deleteActivity(activityId).subscribe(act=>{
this.getActivities();
this.deleteInfo= true;
this.dataSaved= false;
});
}
getAllActivities() method
getActivities(){
this.activityService.getAllActivity().subscribe((data: Activity[] )=>{
this.activities = data;
console.log(this.activities);
});
}
CMS cervice class /getAllactivity method
getAllActivity():Observable<Activity[]>{
return this.http.get<Activity[]>(this.activityUrl);
}
this is delete method which is in CMS service
deleteActivity(activityId: string):Observable{
let httpHeaders = new HttpHeaders().set('Content-type','application/json');
let options={
headers:httpHeaders
};
return this.http.delete(this.activityUrl+"/"+activityId);
}
Service Class
Activity.ts
The text was updated successfully, but these errors were encountered: