У меня есть asp.net
бэкэнд-сервис.API бэкэнда работает нормально с postman
, но делать то же самое из углового не получается.Тело не отправляется на сервер.Я использую угловой 7.
Это мой код.
молочный сервис
public addNewDairy(value) {
return this.http.post(this.apiUrl + "dairy", value)
.pipe(
map(success => success),
catchError(this.hes.handleError) // then handle the error
);
}
и компонент
requestForRegistration(value) {
this.jqxLoader.open();
this.ds.addNewDairy(value).subscribe(res => {
this.jqxLoader.close();
this.message = "Requested for activation.";
this.notification.open();
}, error => {
console.log(error);
this.jqxLoader.close();
this.message = "Something went wrong please try again!";
this.notification.open();
});
}