一:this和that
分享者:別寒,原文地址
微信小程序中,在wx.request({});方法調(diào)用成功或者失敗之后,有時(shí)候會(huì)需要獲取頁(yè)面初始化數(shù)據(jù)data的情況,這個(gè)時(shí)候,如果使用,this.data來(lái)獲取,會(huì)出現(xiàn)獲取不到的情況,調(diào)試頁(yè)面也會(huì)報(bào)undefiend。原因是,在javascript中,this代表著當(dāng)前對(duì)象,會(huì)隨著程序的執(zhí)行過(guò)程中的上下文改變,在wx.request({});方法的回調(diào)函數(shù)中,對(duì)象已經(jīng)發(fā)生改變,所以已經(jīng)不是wx.request({});方法對(duì)象了,data屬性也不存在了。官方的解決辦法是,復(fù)制一份當(dāng)前的對(duì)象,如下:
var that=this;//把this對(duì)象復(fù)制到臨時(shí)變量that
在success回調(diào)函數(shù)中使用that.data就能獲取到數(shù)據(jù)了。
不過(guò),還有另外一種方式,也很特別,是將success回調(diào)函數(shù)換一種聲明方式,如下:
-
success: res =>{
-
this.setData({
-
loadingHidden: true,
-
hideCommitSuccessToast: false
-
})
-
}
在這種方式下,this可以直接使用,完全可以獲取到data數(shù)據(jù)。
再給一個(gè)完整的例子:
-
success: res => {
-
if (res.data.code != 0) {
-
// 提交失敗
-
this.setData({
-
loadingHidden: true,
-
hiddenTips: false,
-
tipsContent: res.data.message
-
})
-
} else {
-
// 提交成功
-
this.setData({
-
loadingHidden: true,
-
hideCommitSuccessToast: false
-
})
-
subBtn = false;
-
-
// 定時(shí),3秒消失
-
setTimeout(() => {
-
this.setData({
-
hideCommitSuccessToast: true
-
})
-
wx.navigateBack({ delta: 2 });
-
}, 2000);
-
-
}
-
}
二:觸摸水波漣漪效果
分享者:未知,原文地址 效果
html代碼
-
<view class="ripple" style="{{rippleStyle}}"></view>
-
<view class="container" bindtouchstart="containerTap"></view>
css代碼
-
.container{
-
width:100%;
-
height:500px;
-
}
-
.ripple {
-
background-color: rgba(0, 0, 0, 0.8);
-
border-radius: 100%;
-
height:10px;
-
width:10px;
-
margin-top: -90px;
-
position: absolute;
-
-webkit-transform: scale(0);
-
}
-
@-webkit-keyframes ripple {
-
100% {
-
-webkit-transform: scale(12);
-
transform: scale(12);
-
background-color: transparent;
-
}
-
}
js代碼
-
containerTap:function(res){
-
console.log(res.touches[0]);
-
var x=res.touches[0].pageX;
-
var y=res.touches[0].pageY+85;
-
this.setData({
-
rippleStyle:''
-
});
-
this.setData({
-
rippleStyle:'top:'+y+'px;left:'+x+'px;-webkit-animation: ripple 0.4s linear;animation:ripple 0.4s linear;'
-
});
-
}
|