angular.js - angularJS怎麼設定cookies保存的時間
世界只因有你
世界只因有你 2017-05-15 16:58:24
0
1
593

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

世界只因有你
世界只因有你

全部回覆(1)
淡淡烟草味

我是答案的搬運工:
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});
}]);
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板