我使用 Angular 4 在网站上工作。 我们正在使用Cookie身份验证方法。 登录过程API响应在设置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); });