search

Home  >  Q&A  >  body text

angular.js - How to set the cookie storage time in angularJS

How to set the cookie storage time when using $cookies in angularJS

世界只因有你世界只因有你2779 days ago592

reply all(1)I'll reply

  • 淡淡烟草味

    淡淡烟草味2017-05-15 17:00:24

    I'm the porter of the answer:
    http://stackoverflow.com/questions/12624181/angularjs-how-to-set-expiration-date-for-cookie-in-angularjs

    angular.module('cookiesExample', ['ngCookies'])
    .controller('ExampleController', ['$cookies', function($cookies) {
      // Find tomorrow's date.
      var expireDate = new Date();
      expireDate.setDate(expireDate.getDate() + 1);
      // Setting a cookie
      $cookies.put('myFavorite', 'oatmeal', {'expires': expireDate});
    }]);

    reply
    0
  • Cancelreply