您好我正在开发angularjs中的Web应用程序。成功登录后,我将返回一些cookie。我试图在成功函数中读取cookie但总是以未定义结束。
return
_fastSkipAvailable &&
!FastSkipInProgress &&
!_reroutingInProgress &&
!_someService.IsWayPointSkipDisabledForThisContract();
我尝试将成功函数作为 $http.post(url, sub).then(function (response) {
//trying to read CookieHeaders=Logintoken=63d4551a-2c09-4b08-9b4b-837f0f3806fd&LoginId=2
setTimeout(function () { LoginSuccess(response); }, 1000);
}, function (error) {
setTimeout(function () { HideLoader(); }, 1000);
toastr.error($filter('translate')(error.data.msg));
});
它给了我未定义的。
我知道是否可以在成功函数中阅读上述cookie?在这方面的任何帮助非常感谢。谢谢。