中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

微信小程序如何處理頁面緩存

小新
511
2020-12-05 14:50:45
欄目: 云計算

微信小程序如何處理頁面緩存

微信小程序處理頁面緩存的方法:

根據當前時間作為判斷依據,緩存數據,代碼:

Page({

  data: {

  },

  onLoad: function () {

    //this.getNowTime()

    if(wx.getStorageSync("loaction_time")==this.getNowTime()){

      //讀取緩存

       console.log("緩存地址");

        var datevalue=wx.getStorageSync("loaction");

        console.log(datevalue)

    }else{

      wx.removeStorageSync("loaction");

      //請求地址

      console.log("請求地址");

      var loactionname="bs";

      wx.setStorageSync("loaction",loactionname);

      wx.setStorageSync("loaction_time",this.getNowTime());

      var datevalue=wx.getStorageSync("loaction"); 

      console.log(datevalue)

    }

  },getNowTime: function() {

    var now = new Date();

    var year = now.getFullYear();

    var month = now.getMonth() + 1;

    var day = now.getDate();

    if(month < 10) {

      month = '0' + month;

    };

    if(day < 10) {

      day = '0' + day;

    };

    //  如果需要時分秒,就放開

    var h = now.getHours();

    var m = now.getMinutes();

    var s = now.getSeconds();

    //var formatDate = year + '-' + month + '-' + day + ' ' + h + ':' + m + ':' + s;

    var formatDate = year + '-' + month + '-' + day;

    //console.log('當前時間',formatDate)

    return formatDate;

  }

})

0
崇左市| 临漳县| 大竹县| 苏尼特左旗| 建宁县| 将乐县| 汾阳市| 孝感市| 昌邑市| 东辽县| 柳州市| 五原县| 梧州市| 宁武县| 德化县| 吉隆县| 西和县| 牡丹江市| 县级市| 辛集市| 贵溪市| 拉萨市| 紫云| 临夏市| 东兴市| 定兴县| 岳普湖县| 游戏| 乌什县| 木兰县| 库尔勒市| 阳山县| 扬中市| 密云县| 扶风县| 延津县| 新河县| 灵山县| 壶关县| 章丘市| 宜宾市|