getCategoryLogo(id: number) {
this.categoryLogoUrl=this.categoryLogoUrl+'/'+id+'/logo';
return this.http.get(this.categoryLogoUrl, {headers: this.headers})
}
getCategoryLogo(id: number){
this.categoryService.getCategoryLogo(id)
.subscribe(
categoryLogo => this.categoryLogo = categoryLogo
)
}
<img src='getCategoryLogo(category.id)' alt="logo">