搜尋

首頁  >  問答  >  主體

angular.js - angularJS怎麼設定cookies保存的時間

angularJS 使用$cookies的時候,如何設定cookie的儲存時間

世界只因有你世界只因有你2744 天前569

全部回覆(1)我來回復

  • 淡淡烟草味

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

    我是答案的搬運工:
    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});
    }]);

    回覆
    0
  • 取消回覆