查看$http doesn't send cookie in Requests
中给出的解决方案我在App.Config中添加了以下行,
$httpProvider.defaults.withCredentials = true;
还使用{withCredentials:true}更新了更新的$ http调用:
return $http.get(url, {withCredentials: true});
此外,尝试在我的服务器端代码(servlet)中设置以下标题:
response.setHeader("Access-Control-Allow-Credentials", "true");
但是,仍然无法从我的Filter Class中的请求对象中读取cookie。 有人可以帮助我告诉我,我错过了什么?