我需要通过http模块获得jwt令牌,然后在header中使用此令牌进行其他请求。我如何使延迟应用程序初始化,直到令牌得到请求解决?
this.http.get(...)
.map(response => response.json())
.flatMap(response => this.http.get(...).map(response => response.json())
.subscribe(response => this.result = response);
你可以使用如何从后端传递参数到angular2的bootstrap方法来延迟应用的初始化。