I want to show the data I have taken using “this.router.navigate” on the detail page. Some data have no description. So the detail page doesn’t open in some. How can I ignore null data?
This is my code;
page.page.ts
getDetail(data){
this.router.navigate(['/datadetail', {
'title': data.name,
'misdesc': data.mission.description,
}]);
}
detail.page.ts
ngOnInit() {
this.title = this.actRoute.snapshot.paramMap.get('title');
this.missionDescription = this.actRoute.snapshot.paramMap.get('misdesc');
}