Angular 2 应用程序是否默认阻止存储 cookie?
Does Angular 2 application block cookies from being stored by default?
我正在连接的后端开发人员向我保证,当他在 set-cookie
header 中发送 cookie 时,浏览器应自动保存 cookie 并通过以下请求将其发回.
是否 Angular 2 阻止发送 cookie?
由于后端和前端都 运行 在本地主机上,它们在不同的端口上是否会阻止 cookie 随请求一起发送?
对于不同的端口,它是一个 CORS 请求。
放
在客户端
xhr.withCredentials = true
另见
在服务器上
Access-Control-Allow-Credentials: true
http://www.html5rocks.com/en/tutorials/cors/?redirect_from_locale=de
我正在连接的后端开发人员向我保证,当他在 set-cookie
header 中发送 cookie 时,浏览器应自动保存 cookie 并通过以下请求将其发回.
是否 Angular 2 阻止发送 cookie?
由于后端和前端都 运行 在本地主机上,它们在不同的端口上是否会阻止 cookie 随请求一起发送?
对于不同的端口,它是一个 CORS 请求。 放 在客户端
xhr.withCredentials = true
另见
在服务器上
Access-Control-Allow-Credentials: true
http://www.html5rocks.com/en/tutorials/cors/?redirect_from_locale=de