您好,登錄后才能下訂單哦!
axios簡(jiǎn)單實(shí)現(xiàn)小程序延時(shí)loading指示
小程序和小游戲的wx.showLoading方法相信大家都不會(huì)陌生,但是怎樣處理loading才能又更好的用戶體驗(yàn)?zāi)兀?/p>
假設(shè)需求如下,1秒類請(qǐng)求沒有相應(yīng),才彈出loading,否則不彈出,請(qǐng)求錯(cuò)誤時(shí),彈出toast。
配合axios實(shí)現(xiàn)如下:
1.在狀態(tài)管理部分存儲(chǔ)loading狀態(tài)
export const loadingStatus$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false) axios.interceptors.request.use( (config: any) => { loadingStatus$.next(true) return config }, (error: any) => { return Promise.reject(error) }, ) axios.interceptors.response.use( (response: any) => { loadingStatus$.next(false) return response.data }, (error: any) => { loadingStatus$.next(false) wx.showToast({ title: 'something wrong happened, please try it later' }) return Promise.reject(error) }, )
2.在應(yīng)用啟動(dòng)時(shí)訂閱
let timer: any = 0 loadingStatus$ .pipe( pairwise(), filter((res: Array<boolean>) => { if (res[0] !== res[1]) { return true } else { return false } }), map((res: Array<boolean>) => { return res[1] }), ) .subscribe((res: boolean) => { // once changed, value must be distinct if (timer === 0) { timer = setTimeout(() => { wx.showLoading({ title: 'loading...' }) }, 1000) } else { clearTimeout(timer) timer=0 wx.hideLoading() } })
感覺配合rx,很多復(fù)雜功能都能很簡(jiǎn)單地實(shí)現(xiàn),另外這個(gè)功能會(huì)伴隨整個(gè)應(yīng)用周期,所以u(píng)nsbscribe可以不用太在意。(除非有其他的bad effect,請(qǐng)告訴我)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。