我正在使用Angular 4开发网站。我们正在使用 Cookie 身份验证方法。登录过程 API 响应后,在Set Cookie字段中有cookie 。但它没有在浏览器中设置值。因此其他 API 的身份验证失败。在使用邮递员时,它工作正常。以下是使用 http get 方法的 Angular 代码(此 Api 是为测试目的而创建的。)
this.http.get(
'http://test.xxx.com/test/testjsondata/login',
{ withCredentials : true}
)
.map(res => res.json()).
subscribe(data => { console.log(data); });