角4:"设置Cookie" Http响应中的标志不是在浏览器中设置Cookie

时间:2017-10-31 11:46:44

标签: angular setcookie angular-httpclient angular-http-auth

我使用 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); });

Chrome console of api Cookies in Api response Cookies are not added in browser

0 个答案:

没有答案