search

Home  >  Q&A  >  body text

angular.js - angularJS怎么设置cookies保存的时间

angularJS 在使用$cookies的时候,如何设置cookie的保存时间

世界只因有你世界只因有你2744 days ago566

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