1
我需要通過http模塊獲取jwt令牌,然後在頭中使用此令牌發出其他請求。我如何延遲應用程序初始化,直到令牌獲取請求解決?在發送其他http請求之前發送http請求angular 2
我需要通過http模塊獲取jwt令牌,然後在頭中使用此令牌發出其他請求。我如何延遲應用程序初始化,直到令牌獲取請求解決?在發送其他http請求之前發送http請求angular 2
this.http.get(...)
.map(response => response.json())
.flatMap(response => this.http.get(...).map(response => response.json())
.subscribe(response => this.result = response);
您可以使用How to pass parameters rendered from backend to angular2 bootstrap method延遲應用程序初始化。