admin管理员组文章数量:1344645
Hi everyone running into a problem with a post service I created in angular. Struggling to catch the error from my ponent when I call the service. I was able to catch the error from the service but I need to do this from my ponent to properly handle the error. Any advice would be greatly appreciated.
Service
sendData(obj) {
let promise = new Promise((resolve) => {
this.http.post(this.URL, obj, this.httpOptions)
.toPromise()
.then(
res => {
console.log(res);
resolve(res);
}
)
//.catch((err) => {
// console.log(err);
// throw err;
//});
});
return promise;
}
Component
this._myservice.sendData(this.myobj)
.then(function (res) {
console.log('data sent');
})
.catch(error => {
console.warn('from ponent:', error);
// this console warn never gets logged out
});
Do I need to update something in my service to allow me to catch the error from the ponent?
Hi everyone running into a problem with a post service I created in angular. Struggling to catch the error from my ponent when I call the service. I was able to catch the error from the service but I need to do this from my ponent to properly handle the error. Any advice would be greatly appreciated.
Service
sendData(obj) {
let promise = new Promise((resolve) => {
this.http.post(this.URL, obj, this.httpOptions)
.toPromise()
.then(
res => {
console.log(res);
resolve(res);
}
)
//.catch((err) => {
// console.log(err);
// throw err;
//});
});
return promise;
}
Component
this._myservice.sendData(this.myobj)
.then(function (res) {
console.log('data sent');
})
.catch(error => {
console.warn('from ponent:', error);
// this console warn never gets logged out
});
Do I need to update something in my service to allow me to catch the error from the ponent?
Share Improve this question edited Aug 30, 2018 at 9:41 Galactic Ranger asked Aug 30, 2018 at 8:41 Galactic RangerGalactic Ranger 8923 gold badges15 silver badges31 bronze badges1 Answer
Reset to default 7You're creating your own Promise
here, but you never call reject
if the Promise
you're wrapping rejects (throws an error). This is known as the the new Promise
antipattern. In your case, you can simply remove this wrapper and replace the call to resolve
with a return
in order to achieve what you need, like so:
sendData(obj) {
return this.http.post(this.URL, obj, this.httpOptions)
.toPromise()
.then(res => {
console.log(res);
return res;
});
}
In order to provide more context, you could fix your original problem by calling reject
. This would look like this:
// DONT'T DO THIS
sendData(obj) {
let promise = new Promise((resolve, reject) => {
this.http.post(this.URL, obj, this.httpOptions)
.toPromise()
.then(res => {
console.log(res);
resolve(res);
})
.catch((err) => {
console.log(err);
reject(err); // Here.
});
});
return promise;
}
But, as I said above, this is overplicated and unnecessary. I hope that it demonstrates how the Promise
your ponent has access to could never see errors that occurred in the HTTP call.
本文标签: javascriptCatch error in promise from a service in an Angular componentStack Overflow
版权声明:本文标题:javascript - Catch error in promise from a service in an Angular component - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702008a2524481.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论