By the way, the code above doesn't compile because the method getTemplates() return a Subscription and not an Observable推荐答案使用 map 代替 getTemplates 中的 subscribe :getTemplates(): Observable<any> { return this.notifService.getTemplateList() .map(response => { /* ... */ return reponse; });} 这篇关于角度5和Rxjs:等待所有订阅的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-18 16:52