Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the AngularJS way to access cookies? I've seen references to both a service and a module for cookies, but no examples. Or is there perhaps no AngularJS approach?


Update: It works now! The suggestions from Dan Doyon and Andy Joslin encouraged me to continue looking for a solution, and it really is simple to use once everything is in place. Here is a functional minimal example, where I had my server set a cookie named text at the time the example was loaded:

<!DOCTYPE html>
<html ng-app="myApp">
<head>
  <script src="http://code.angularjs.org/1.0.0rc10/angular-1.0.0rc10.js"></script>
  <script src="http://code.angularjs.org/1.0.0rc10/angular-cookies-1.0.0rc10.js"></script>
  <script>
    angular.module('myApp', ['ngCookies']);
    function CookieCtrl($scope, $cookies) {
      $scope.cookieValue = $cookies.text;
    }
  </script>
</head>
<body ng-controller="CookieCtrl">

Cookie Value: {{cookieValue}}

</body>
</html>

The steps are:

  1. include angular.js
  2. include angular-cookies.js
  3. inject ngCookies into your app module (and make sure you reference that module in the ng-app or ng:app attribute)
  4. add a $cookies parameter to the controller
  5. access the cookie as a member variable using the dot (.) operator
share|improve this question
The great thing about angularjs is because of the dependency injectiong aspect of it, you can mock out things like ngCookies for unit testing. Thanks for putting in your steps. – Dan Doyon Jun 13 '12 at 2:16
2  
@DanDoyon I am trying to impelement same thing but in app.js inside config. but I am getting "Uncaught Error: Unknown provider: $cookies " any clue. – Sutikshan Dubey Sep 27 '12 at 7:54
@sutikshan-dubey just seeing your question, can you provide code sample? – Dan Doyon Oct 30 '12 at 15:56
@DanDoyon Thanks. cookies didn't solve my pupose, stackoverflow.com/questions/12624181/… I fixed it using web-storage. This helped me alot - people.opera.com/shwetankd/external/demos/webstorage_demo.htm – Sutikshan Dubey Oct 31 '12 at 4:44
This doesn't work. Does anyone have a working Fiddle of this? – Trip Jan 25 at 21:13
show 1 more comment

3 Answers

up vote 28 down vote accepted

In addition to adding reference to the js file you need to inject ngCookies into your app definition such as:

angular.module('myApp', ['ngCookies']);

you should then be good to go.

share|improve this answer
2  
Thanks, I edited my question show a full working example. – Ellis Whitehead Jun 12 '12 at 20:06

http://docs.angularjs.org/api/ngCookies.$cookieStore

Make sure you include http://code.angularjs.org/1.0.0rc10/angular-cookies-1.0.0rc10.js to use it.

share|improve this answer
Could you provide a hint about how to access it, or a link to which documentation I need to figure this out? After including the angular-cookies.js file in my HTML, I added $cookieStore to the signature of my controller (i.e. function AccountCtrl($scope, $cookieStore)), but then get the following error message: Unknown provider: $cookieStoreProvider <- $cookieStore – Ellis Whitehead Jun 11 '12 at 15:05
Unfortunately, I've never used it, I just know it exists. Maybe you should ask on the Angular google group for a quicker response. groups.google.com/forum/#!forum/angular – Andy Joslin Jun 11 '12 at 15:23
It turns out that $cookieStore is apparently mostly intended for client-generated cookies. To access server-generated cookies, I had to use $cookies instead. – Ellis Whitehead Jun 12 '12 at 20:08
5  
The URL has become out of date — nowadays, angular-cookies- is hosted at Googles CDN, here: ajax.googleapis.com/ajax/libs/angularjs/1.0.1/… (https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular-cookies.min.js) See blog post: blog.angularjs.org/2012/07/… – KajMagnus Aug 26 '12 at 9:36

This is how you can set and get cookie values. This is what I was originally looking for when I found this question.

Note we use $cookieStore instead of $cookies

<!DOCTYPE html>
<html ng-app="myApp">
<head>
  <script src="http://code.angularjs.org/1.0.0rc10/angular-1.0.0rc10.js"></script>
  <script src="http://code.angularjs.org/1.0.0rc10/angular-cookies-1.0.0rc10.js"></script>
  <script>
    angular.module('myApp', ['ngCookies']);
    function CookieCtrl($scope, $cookieStore) {
      $scope.lastVal = $cookieStore.get('tab');

      $scope.changeTab = function(tabName){
          $scope.lastVal = tabName;
          $cookieStore.put('tab', tabName);
      };
    }
  </script>
</head>
<body ng-controller="CookieCtrl">
    <!-- ... -->
</body>
</html>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.