W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋?zhuān)洪_(kāi)始下拉刷新,調(diào)用后觸發(fā)下拉刷新動(dòng)畫(huà),效果與用戶(hù)手動(dòng)下拉刷新一致。
Object object
屬性名 | 類(lèi)型 | 必填 | 默認(rèn)值 | 說(shuō)明 | ||
---|---|---|---|---|---|---|
success |
Function |
否 |
接口調(diào)用成功的回調(diào)函數(shù) |
|||
fail |
Function |
否 |
接口調(diào)用失敗的回調(diào)函數(shù) |
|||
complete |
Function |
否 |
接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行) |
<view class="wrap">
<view class="card-area">
<view class="page-info">下拉頁(yè)面/點(diǎn)擊按鈕即可刷新</view>
<button bind:tap="startPullDownRefresh" disabled="{{disabled}}" hover-stop-propagation="true" type="primary">開(kāi)始刷新</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ā)用戶(hù)手動(dòng)下拉刷新,在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);
}
});
}
});
錯(cuò)誤碼 | 說(shuō)明 |
---|---|
1001 | 執(zhí)行失敗 |
錯(cuò)誤碼 | 說(shuō)明 |
---|---|
201 | 解析失敗,請(qǐng)檢查調(diào)起協(xié)議是否合法。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: