Как я могу решить этот тип ошибки
Это мой сервисный файл
summaryData(data):Observable <SummaryReport>{
debugger;
let headers = new HttpHeaders({'Content-Type': 'application/json'});
return this.http.post<SummaryReport>(this.baseurl,data,{headers:headers})
}
Это мой компонент
GetSummaryData(){
debugger;
console.log(this.auctionID);
this.httpService.summaryData(this.auctionID).subscribe(
data=>this._summaryReport, error=>alert(error))
}