2.11学习总结

  1. 推送更改完成之后的文件
    2.11学习总结
    2.11学习总结
    2.11学习总结
    2.11学习总结
    2.微信小程序中点击关注按钮变为已关注
    2.11学习总结
    2.11学习总结
    2.11学习总结
    3.小程序发送验证码60秒倒计时

xhtml2.11学习总结
js:
data: {
time: ‘发送验证码’,
currentTime: 60,
},
sendRegistCode: function(e){
var that = this;
var currentTime = that.data.currentTime;
var interval;
that.setData({
time: currentTime + ‘秒’,
disabled: true,
})
interval = setInterval(function () {
that.setData({
time: (currentTime - 1) + ’ 秒’
})
currentTime–;
if (currentTime <= 0) {
clearInterval(interval)
that.setData({
time: ‘重新获取’,
currentTime: 60,
disabled: false
})
}
}, 1000)
}
4.学会描述接口