cache.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**
  2. * 缓存数据优化
  3. * var cache = require('utils/cache.js');
  4. * import cache from '../cache'
  5. * 使用方法 【
  6. * 一、设置缓存
  7. * string cache.put('k', 'string你好啊');
  8. * json cache.put('k', { "b": "3" }, 2);
  9. * array cache.put('k', [1, 2, 3]);
  10. * boolean cache.put('k', true);
  11. * 二、读取缓存
  12. * 默认值 cache.get('k')
  13. * string cache.get('k', '你好')
  14. * json cache.get('k', { "a": "1" })
  15. * 三、移除/清理
  16. * 移除: cache.remove('k');
  17. * 清理:cache.clear();
  18. * 】
  19. * @type {String}
  20. */
  21. module.exports = {
  22. /*
  23. * 缓存前缀
  24. */
  25. postfix:'twinkly_',
  26. /**
  27. * 设置缓存
  28. * @param {[type]} k [键名]
  29. * @param {[type]} v [键值]
  30. * @param {[type]} e [过期时间:单位秒]
  31. * @param {[type]} s 异步回调
  32. */
  33. set:function(k, v, e, s){
  34. var that=this;
  35. var e=e || 0;
  36. if(e>0) e=Date.parse(new Date()) + e*1000;
  37. if(v){
  38. if(typeof s == 'function'){
  39. wx.setStorage({
  40. key: k,
  41. data: v,
  42. success() {
  43. wx.setStorageSync(that.postfix + k, e)
  44. s();
  45. }
  46. });
  47. }else{
  48. wx.setStorageSync(that.postfix + k, e)
  49. wx.setStorageSync(k, v)
  50. }
  51. }else{
  52. that.remove(k);
  53. }
  54. },
  55. /**
  56. * 获取缓存
  57. * @param {[type]} k [键名]
  58. */
  59. get:function(k){
  60. var that=this,
  61. deadtime=wx.getStorageSync(that.postfix + k),
  62. data=wx.getStorageSync(k);
  63. if(deadtime>0){
  64. var now=Date.parse(new Date());
  65. if(deadtime<now){
  66. return data;
  67. }else{
  68. return false;
  69. }
  70. }else{
  71. return data;
  72. }
  73. },
  74. /**
  75. * 清理指定缓存
  76. * @return {[type]} [description]
  77. */
  78. remove:function(k){
  79. var that=this;
  80. wx.removeStorageSync(that.postfix + k);
  81. wx.removeStorageSync(k);
  82. },
  83. /**
  84. * 获取缓存并销毁
  85. * @param {[type]} k [键名]
  86. * @param {[type]} def [获取为空时默认]
  87. */
  88. getonce:function(k){
  89. var that=this;
  90. var data=that.get(k);
  91. that.remove(k);
  92. return data;
  93. },
  94. /**
  95. * 清理所有缓存
  96. * @return {[type]} [description]
  97. */
  98. clear:function(){
  99. wx.clearStorageSync();
  100. }
  101. }