溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

axios簡(jiǎn)單實(shí)現(xiàn)小程序延時(shí)loading指示

發(fā)布時(shí)間:2020-09-30 18:32:11 來源:腳本之家 閱讀:141 作者:杜帥在掘金 欄目:web開發(fā)

axios簡(jiǎn)單實(shí)現(xiàn)小程序延時(shí)loading指示

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í)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(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)容。

AI