W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
解釋: 停止當(dāng)前頁面下拉刷新。
無
<view class="wrap">
<view class="card-area">
<view class="page-info">下拉頁面/點(diǎn)擊按鈕即可刷新</view>
<button bind:tap="startPullDownRefresh" disabled="{{disabled}}" hover-stop-propagation="true" type="primary">開始刷新</button>
<button bind:tap="stopPullDownRefresh" hover-stop-propagation="true" type="primary">停止刷新</button>
<button data-set="{{textStyle}}" bind:tap="setBackgroundTextStyle" hover-stop-propagation="true" type="primary">點(diǎn)擊切換loading樣式為:{{textStyle}}</button>
</view>
</view>
Page({
data: {
textStyle: 'dark',
disabled: false
},
startPullDownRefresh() {
// 若要觸發(fā)用戶手動下拉刷新,在json文件中設(shè)置 "enablePullDownRefresh": true
swan.startPullDownRefresh({
success: res => {
this.setData('disabled', true);
console.log('startPullDownRefresh success', res);
},
fail: err => {
console.log('startPullDownRefresh fail', err);
}
});
},
stopPullDownRefresh() {
swan.stopPullDownRefresh();
this.setData('disabled', false);
},
setBackgroundTextStyle(e) {
let textStyle = e.target.dataset.set;
swan.setBackgroundTextStyle({
textStyle: textStyle,
success: () => {
console.log('setBackgroundTextStyle success');
if (textStyle === 'dark') {
this.setData('textStyle', 'light');
}
else {
this.setData('textStyle', 'dark');
}
},
fail: err => {
console.log('setBackgroundTextStyle fail', err);
}
});
}
});
錯誤碼 | 說明 |
---|---|
1001 | 執(zhí)行失敗 |
錯誤碼 | 說明 |
---|---|
201 | 解析失敗,請檢查調(diào)起協(xié)議是否合法。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: