Hi小程序小編了解到枝哄,微信小程序成為當(dāng)下熱門話題娱两,下面從多個(gè)方面來談?wù)?b>微信小程序簽到功能設(shè)計(jì)與實(shí)現(xiàn)。
后端寫兩個(gè)接口浇衬,一個(gè)用于查詢用戶今日是否簽到和簽到記錄總數(shù)懒构,一個(gè)用于添加用戶簽到信息到數(shù)據(jù)庫。這里用的是python的flask框架耘擂。
(1)查詢用戶簽到信息接口:
查詢到所有簽到日期后用set去除重復(fù)項(xiàng)胆剧,然后判斷一下當(dāng)天的日期是否在其中,如果不在其中醉冤,signed=False表示今日未簽到秩霍。簽到總數(shù)就是all_date的長度
使用了datetime庫來獲取日期信息。from datetime import date
(2)添加用戶簽到信息接口:
小程序前端
wxml文件
點(diǎn)擊此處簽到
今日已簽到
已簽到{{total_sign}}天
wxss文件
.image{
float:left;
width: 140rpx;
height: 140rpx;
margin-right: 7%;
margin-left:20%;
}
.sign{
margin-top: 10%;
}
.sign_info{
width: 100%;
color: #666;
font-size: 43rpx;
}
js文件
get_sign: function(){
var that = this;
var userId = wx.getStorageSync("userId");
wx.request({
url: 'https://服務(wù)器公網(wǎng)ip:80/get_sign/'+userId,
method: "GET",
success: function (res) {
if (res.data.status == 1) {
that.setData({
total_sign: res.data.data.total,
signed: res.data.data.signed,
})
}
else{
console.log("status error: " + res.data.Exception)
}
},
})
},
sign:function(){
var that = this;
var userId = wx.getStorageSync("userId");
wx.request({
url: 'https://服務(wù)器公網(wǎng)ip:80/sign/' + userId,
method: "GET",
success: function (res) {
if (res.data.status == 1) {
that.setData({
total_sign: that.data.total_sign+1,
signed: true,
})
wx.showToast({
title: '成功',
icon: 'success',
duration: 2000
})
}
else {
console.log("status error: " + res.data.Exception)
}
},
})
},
用戶登錄后蚁阳,會(huì)立即觸發(fā)get_sign函數(shù)铃绒,從數(shù)據(jù)庫獲取用戶簽到信息存到page的data中,頁面也會(huì)顯示用戶今日是否簽到和簽到總數(shù)螺捐。
用戶點(diǎn)擊簽到后颠悬,會(huì)保存簽到信息矮燎,并更新data。用showToast彈窗提示簽到成功椿疗。
文章來源:https://www.hishop.com.cn/xiaocx/show_58353.html
本文轉(zhuǎn)載漏峰!