我遇到了两个问题,想知道是否有人有类似的东西,我提供的服务带有以下代码:
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'))));
}
通常正常工作,但是很少,它不会拨打电话。它不会显示在“网络”标签或其他任何内容中,而是会调用该函数,然后在此处停止。
希望有人可以提供帮助,
谢谢