I have the following code, I need to check the status that the server returns to WebApp, I have the following code:
this.http.post (this.url,json)
.subscribe (
res => {
console.log(res);
},
(err: any) => {
console.log('raw error =>', err);
}
);}