来自http.post的间歇性回复,以angular

时间:2019-12-13 16:24:14

标签: angular xmlhttprequest

我遇到了两个问题,想知道是否有人有类似的东西,我提供的服务带有以下代码:

public authenticate(username: string, password: string) {
  return this.http
    .post<any>('/api/login/', { username, password }, { observe: 'response' })
    .pipe(tap(response => (this.token = response.headers.get('authorization'))));
}

通常正常工作,但是很少,它不会拨打电话。它不会显示在“网络”标签或其他任何内容中,而是会调用该函数,然后在此处停止。

希望有人可以提供帮助,

谢谢

0 个答案:

没有答案