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:
- include angular.js
- include angular-cookies.js
- inject
ngCookiesinto your app module (and make sure you reference that module in theng-apporng:appattribute) - add a
$cookiesparameter to the controller - access the cookie as a member variable using the dot (.) operator