StudioTime
StudioTime

Reputation: 23959

Angular and $cookies - $cookies.get is not a function

I'm trying to use cookies within Angular - here's what I'm trying:

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.14/angular-cookies.min.js"></script>

var capApp = angular.module('capApp', ['ngRoute','ui.bootstrap','ngCookies']);

capApp.controller('cookieCtrl', ['$scope','$cookies', function($scope, $cookies) {
  var favoriteCookie = $cookies.get('user_id');
  alert(favoriteCookie);
}]);

I get this error in the console:

TypeError: $cookies.get is not a function

Any ideas where I'm going wrong?

UPDATE

Check which version of Angular you are using for everything - any Angular guys read this, make the version switch in the docs bright green and huge! You simply don't notice it.

Upvotes: 34

Views: 36538

Answers (3)

Maksood
Maksood

Reputation: 1200

The syntax you have is for version 1.4.x but you are referencing an older version. If you do not want to update to 1.4.x, you can use $cookieStore instead as follows:

$cookieStore.put("key", "value"); 
var value = $cookieStore.get("key");

Alternatively if you are using version 1.3.x or below, you can use $cookies as follows:

$cookies.key = "value";
var value = $cookies.key; 

Upvotes: 11

cilerler
cilerler

Reputation: 9420

The following method should work.

var favoriteCookie = $cookies.user_id;

Upvotes: 2

Rias
Rias

Reputation: 1996

In Angular 1.3.14 you can just use

var favoriteCookie = $cookies[user_id];

See the documentaiton here: Angular Cookies

Upvotes: 34

Related Questions