标签: angular angular-http-interceptors
我在请求标头中添加了一个新的自定义属性,如下所示:
const headers = { 'Authorization': 'Bearer my-token', 'My-Custom-Header': 'foobar' }; return this._http.post(environment.grow_backend + '/sourceURL', personData, { headers })
我可以从网络请求头看到它
但是在拦截器intercept方法中看起来headers列表是空的: