在我的应用程序中,我有这样的东西:
this._personService.getName(id)
.concat(this._documentService.getDocument())
.subscribe((response) => {
console.log(response)
this.showForm()
});
//Output:
// [getnameResult]
// [getDocumentResult]
// I want:
// [getnameResult][getDocumentResult]
然后我得到两个分离的结果,首先是 _personService
,然后是 _documentService
。如何等待两个结果,然后再调用 this.showForm()
来完成然后操作每个结果。