Я использую Angular 4 и Springboot для создания приложения, но у меня проблема: я хочу отобразить объект count в html, и я не знаю, как это мой репозиторий
@Query("select count (c) from Contact c")
int getCountOfContact();
myservice.ts
getContactCount(){
return this.http.get("http://localhost:9090/contact/count")
.map(resp=>resp.json());
}
мой component.ts
getCountConact(){
this.dashboardservice.getContactCount().subscribe((data)=>{
console.log(data);
},(error)=>{
console.log(error);
})
}
как мне получить результат в моем component.html