Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Angular cannot read cookies in http post response #11247

Closed
santoshkt opened this issue Mar 5, 2015 · 3 comments
Closed

Angular cannot read cookies in http post response #11247

santoshkt opened this issue Mar 5, 2015 · 3 comments

Comments

@santoshkt
Copy link

Similar question has been answered https://groups.google.com/forum/#!topic/angular/yc8tODmDm18 and many other places. The solution is to set a timeout to call a digest so that response cookies sync with browser. I had this solution working perfectly in 1.2.8 but got it broken in 1.3.14. Any idea if this has changed ?

I'm not posting any code here because the problem is same as in the link provided and it is working in 1.2.8 Angular version and 1.2.28 version.

I had to change my interceptors for upgrading to 1.3.14 but they all work fine except for the cookies. I can see cookies in browser.

@santoshkt
Copy link
Author

This is same as #7631 and #10861

But I can't get it working in1.3.14 using timeout.

@santoshkt
Copy link
Author

I did this before accessing cookies

$cookies = $browser.cookies();

Looks to be a very dirty fix as I'm not really directly using browser at all places. Just once place which breaks my application, I did above. Not sure of the impact of changing the dependency variable. Also, I now have too may dependencies to my controllers (both cookies and browser).

@lgalfaso
Copy link
Contributor

lgalfaso commented Mar 8, 2015

The $cookiesservice is async (with all its pros and cons) and issues like this are the reason why it is deprecated in 1.4. The synchronous mechanism, this is $browser.cookies() works best in this case

@lgalfaso lgalfaso closed this as completed Mar 8, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants