云服务器网:购买云服务器和VPS必上的网站!

微信小程序怎么处理页面缓存

微信小程序怎样处理页面缓存 微信小程序处理页面缓存的方法: 根据当前时间作为判断根据,缓存数据,代码: Page({ data: { }, onLoad: function () { //this.getNowTi

微信小程序怎样处理页面缓存

微信小程序处理页面缓存的方法:

根据当前时间作为判断根据,缓存数据,代码:

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;

}

})

本文来源:https://www.yuntue.com/post/80290.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注