溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

微信小程序本地存儲如何實(shí)現(xiàn)每日簽到、連續(xù)簽到功能

發(fā)布時(shí)間:2021-06-21 13:58:37 來源:億速云 閱讀:156 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)微信小程序本地存儲如何實(shí)現(xiàn)每日簽到、連續(xù)簽到功能的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

先說說相關(guān)注意吧:

其一就是 storage中只能存放字符串!

我去,昨晚大部分時(shí)間都是在搞這個(gè)。以前一直認(rèn)為存放的是對象,興致勃勃寫完發(fā)現(xiàn)點(diǎn)擊以后出現(xiàn)了“NAN”…

覺得 事情并沒有這么簡單。

仔細(xì)回去看了一下曾經(jīng)Vue寫過的localStorage,發(fā)現(xiàn)一直弄錯(cuò)了,應(yīng)該存放字符串!

搞清楚這個(gè)以后,又有一個(gè)問題:你要“ 點(diǎn)擊加1 ”,這里總是把數(shù)字和字符串弄反,甚至想了用數(shù)組形式存放。。。最終想到了解決辦法:把存放的字符串轉(zhuǎn)為數(shù)字,加1后再轉(zhuǎn)為字符串存放到storage中 。

想到這我不禁喜形于色,終于可以了!

但是當(dāng)我無意中狂點(diǎn)16下的時(shí)候,我又哭了…

new Date()函數(shù)控制日期——一分鐘/一天/…只能點(diǎn)一次:

var D=(new Date()).getDate().toString();
 if(D != wx.getStorageSync('D')){ //判斷是否過了當(dāng)天
  //如果是新的一天,則...
 }else{
 //否則,例如:
  wx.showToast({
  title: '今日打卡已完成!',
  icon:'loading',
  duration:1200,
  mask:true
  })
 }

這里又出現(xiàn)一個(gè)問題,我在當(dāng)前頁面開始時(shí)onLoad里面加了一段代碼:把當(dāng)前時(shí)間存放到storage中,但是我發(fā)現(xiàn),這樣以后就點(diǎn)不了了(當(dāng)天),為什么?

因?yàn)闆_突了啊,加載頁面時(shí)存放此時(shí)時(shí)間,那么你如果在這個(gè)事件內(nèi)(本例:一天)去點(diǎn)擊,如上面代碼第一、二行,它不成立——都是“今天”,所以會執(zhí)行else語句。

解決辦法: 去掉onLoad函數(shù),這樣開始執(zhí)行if時(shí)候會發(fā)現(xiàn)storage中沒有存儲,也就“!=”了。

下面放上示例代碼:

hello.wxml

<view class="container">
 <view class="mxc1">
 <text>您已簽到 {{firstTime}} 次</text>
 </view>
 <view class="{{flag?'mxc2-1':'mxc2-2'}}" bindtap="onBindTap">
 <text>我要簽到</text>
 </view>
</view>

hello.wxss

.container{
 background-color: ghostwhite;
 width: 100%;
 height: 100%;
 flex-direction: column;
 display: flex;
 align-items: center;
 min-height: 100vh;
}
.mxc1{
 position: relative;
 width: 100%;
 height: 400rpx;
 border-top: 1px solid #000;
 border-bottom: 1px solid #000;
 margin-top: -70rpx;
 flex-direction: column;
 display: flex;
 align-items: center;
 background-color: #efeff4;
}
.mxc1 text{
 font-size: 30rpx;
 font-weight: bold;
 line-height: 400rpx;
}
.mxc2-1{
 position: absolute;
 width: 60%;
 height: 74rpx;
 border: 1px solid rgba(247, 2, 2, 0.959);
 background-color: rgba(247, 2, 2, 0.959);
 border-radius: 3px;
 flex-direction: column;
 display: flex;
 align-items: center;
 margin-top: 396rpx;
}
.mxc2-1 text{
 color: white;
 font-size: 32rpx;
 line-height: 74rpx;
}
.mxc2-2{
 position: absolute;
 width: 60%;
 height: 74rpx;
 border: 1px solid rgba(182, 177, 177, 0.959);
 background-color: rgba(182, 177, 177, 0.959);
 border-radius: 3px;
 flex-direction: column;
 display: flex;
 align-items: center;
 margin-top: 396rpx;
}
.mxc2-2 text{
 color: #000;
 font-size: 32rpx;
 line-height: 74rpx;
}

hello.js

Page({
 data:{
 firstTime:'0',
 flag:true
 },
 onBindTap:function(){
 var D=(new Date()).getDate().toString();
 if(D != wx.getStorageSync('D')){
  wx.setStorageSync('D', D);
  wx.setStorage({
  key: 'FirstTime',
  data: (parseInt(this.data.firstTime) + 1).toString(),
  })
  var that = this;
  var firstTime = wx.getStorage({
  key: 'FirstTime',
  success: function (res) {
   that.setData({
   firstTime: res.data,
   flag:false
   })
   wx.showToast({
   title: '簽到成功!',
   icon: 'success',
   duration: 1200,
   mask: true
   })
  },
  })
 }else{
  wx.showToast({
  title: '今日打卡已完成!',
  icon:'loading',
  duration:1200,
  mask:true
  })
 }
 },
 onShow:function(options){
 var that = this;
 var firstTime = wx.getStorage({
  key: 'FirstTime',
  success: function (res) {
  that.setData({
   firstTime: res.data
  })
  },
 })
 var D = (new Date()).getDate().toString();
 if (D != wx.getStorageSync('D')){
  this.setData({
  flag:true
  })
 }else{
  this.setData({
  flag:false
  })
 }
 },
})

hello.json

{
 "navigationBarTitleText": "簽到",
 "navigationBarTextStyle": "black",
 "navigationBarBackgroundColor": "ghostwhite"
}

擴(kuò)展時(shí)刻:

剛剛實(shí)現(xiàn)了簡單的簽到功能,那么,怎么實(shí)現(xiàn)連續(xù)簽到呢?

我想了一晚上,因?yàn)閯傞_始時(shí)思路跑到了“誤區(qū)”——判斷點(diǎn)擊后加1的事件是否匹配。但是你點(diǎn)擊后加1是個(gè)被動(dòng)事件,唯一條件就是點(diǎn)擊,拿這個(gè)判斷豈不是很難受?

于是,我們同樣可以用parseInt()函數(shù)來把當(dāng)前日期(時(shí)間)和緩存日期(時(shí)間)作比較 ,判斷他們是否滿足:

var D=(new Date()).getDate().toString();

在點(diǎn)擊事件onBindTap里:

var DT=wx.getStorageSync('D');
if(parseInt(D)!=parseInt(DT)+1){
 //非連續(xù)簽到 對應(yīng)的操作
}else{
 //連續(xù)簽到
}

易錯(cuò)點(diǎn)提示:

上面 hello.js 代碼中有這么一行:this.data.firstTime

那有沒有人想過 只寫firstTime?

小程序中用data中的數(shù)據(jù)(變量)必須加上“this.data.”前綴!

感謝各位的閱讀!關(guān)于“微信小程序本地存儲如何實(shí)現(xiàn)每日簽到、連續(xù)簽到功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI