我想在angular2中写下jquery代码。我怎么能这样做?
$.when($.ajax("url"), $.ajax("/url2"))
.then(myFunc, myFailure);
and
$.when( $.ajax("/req1"), $.ajax("/req2"), $.ajax("/req3") ).then(function(resp1, resp2, resp3){
// plot graph using data from resp1, resp2 & resp3
});
答案 0 :(得分:1)
首先,您已经学习了如何使用Angular Http模块。
然后学习如何使用RxJS完全组合/加入您的http请求。
Http的参考:https://angular.io/tutorial/toh-pt6 forkJoin的参考:https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/forkjoin.md
let request$ = this.http.get('https://yourapi/api/').map(res => res.json());
let request2$ = this.http.get('http://another/api2').map(res => res.json());
Observable.forkJoin([request$, request2$]).subscribe(results => {
});