admin管理员组文章数量:1346283
I'm trying to retrieve data from multiple http requests and i decided to avoid nested subscribe(). I just want to write code in async await style.
const diagnostics = this.http.get(url, {params: params}).toPromise()
console.log(diagnostics);
But i get this:
// ZoneAwarePromise {__zone_symbol__state: null, __zone_symbol__value: Array(0)}
Which i don't know how to handle to extract data.
Is there a way to avoid callbacks like ?
.then(res => {}).catch()
I'm trying to retrieve data from multiple http requests and i decided to avoid nested subscribe(). I just want to write code in async await style.
const diagnostics = this.http.get(url, {params: params}).toPromise()
console.log(diagnostics);
But i get this:
// ZoneAwarePromise {__zone_symbol__state: null, __zone_symbol__value: Array(0)}
Which i don't know how to handle to extract data.
Is there a way to avoid callbacks like ?
.then(res => {}).catch()
Share
Improve this question
asked Jul 14, 2018 at 16:01
sandumsandum
7916 gold badges14 silver badges25 bronze badges
6
- Why you want to return Promise and why not Observable? Any specific reason? – Amit Chigadani Commented Jul 14, 2018 at 16:05
- @AmitChigadani, one could ask why Observable when Promise will do the job fine. – trincot Commented Jul 14, 2018 at 16:06
-
@trincot Because Observable is more rich than Promise and could do more jobs. And By default all http requests return an
Observable
.. So why should we convert it to Promise and then return. – Amit Chigadani Commented Jul 14, 2018 at 16:08 -
True, but promises can benefit from the nice
async
/await
syntax. – trincot Commented Jul 14, 2018 at 16:10 - @sandum Are you looking for a a pure promise style answer ? – madjaoue Commented Jul 14, 2018 at 16:12
2 Answers
Reset to default 3https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all
Sounds like you may want to look at this, you can collate an array of promises and can essentially "await" on all of them to plete before acting on the value.
myPromiseArray.push(this.http.get(url, {params: params}).toPromise())
Promise.all(myPromiseArray).then(alltheValuesInAnArray => {})
As you noticed, the result of .toPromise
method is Promise object. In order to use async/await style, you need at first wrap your code with async function, by prepending async
keyword to function, and then with await
keyword tell your code to wait for async operation. In your case it's http request.
async function run(){
try{
const diagnostics = await (this.http.get(url, {params: params}).toPromise());
// wait for asynchronous request
console.log(diagnostics);
} catch(err){
// request failed
console.error(err);
}
}
run();
本文标签: javascriptThe right way to use toPromise in angular 6Stack Overflow
版权声明:本文标题:javascript - The right way to use toPromise in angular 6 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743827195a2545859.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论