如何将令牌存储在会话存储中,并在标头中使用该令牌进行另一个API调用?

时间:2018-12-13 09:42:03

标签: angular api rxjs

在使用Reactive编程的angular 7中,如何将令牌存储在会话存储中,以及如何在标头中使用该令牌进行另一个API调用?

service.ts

public getResponse(data: object) {
    return this.http.post(`${this.baseURL}`, data, { observe: 'response' })
        .pipe(concatMap(res2 => this.http.get(`${this.baseURL1}`)))
}

现在哪里包括第一行api调用存储令牌的行?因为第二次API调用基于令牌。

localStorage.setItem("token",res.headers.get('X-Auth-Token'));

0 个答案:

没有答案