91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序如何實現異步API為Promise簡化異步編程

發布時間:2021-07-06 10:17:29 來源:億速云 閱讀:242 作者:小新 欄目:web開發

這篇文章主要介紹了微信小程序如何實現異步API為Promise簡化異步編程,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

把微信小程序異步API轉化為Promise。用Promise處理異步操作有多方便,誰用誰知道。

微信官方沒有給出Promise API來處理異步操作,而官方API異步的又非常多,這使得多異步編程會層層回調,代碼一復雜,回調起來就想砸電腦。

于是寫了一個通用工具,把微信官方的異步API轉化為Promise,方便處理(多)異步操作。

你可以這樣用:

準備轉化后的方法并暴露出

// /utils/wx-promise.js
import toPromise from '/module/to-promise/src/index'
const toPromiseWx = toPromsie(wx)
export const request = toPromiseWx('requset')
export const getLocation = toPromiseWx('getLocation')
export const setStorage = toPromiseWx('setStorage')
//export 其他你項目中可能用到的異步API

在其他文件中使用

在App.js中使用:

//App.js
import { request } from './utils/wx-promise.js'

App({
 onLanuch: () => {
  request({ url: 'http://api.yourapi.com' })
   .then(() => {
    //成功后處理
   })
   .then(() => {
    //失敗后處理
   })
 }
})

在其他page中使用:

// /page/index.js
import { request, setStorage } from '../utils/wx-promise.js'

page({
 onLoad: () => {
  request({ url: 'http://api.yourapi.com' })
   .then(() => {
    //成功后處理
   })
   .then(() => {
    //失敗后處理
   })
 },
 onHide: () => {
  setStorage({
   key: 'yourkey',
   data: 'yourvalue'
  })
   .then(() => {
    //保存成功
   })
   .then(() => {
    //保存失敗
   })
 }
})

項目地址:to-promise

其他更多更具體用法,直接粘貼README了,如下。

to-promise是一個轉換微信小程序異步API為Promise的一個工具庫

優點:

避免小程序異步編程多次回調帶來的過多回調導致邏輯不清晰,篇幅過長等問題。
借助于Promise異步編程特點,支持鏈式操作,像同步一樣寫異步。
轉化后得API幾乎和微信官方API一樣。

使用方法:

安裝

使用git安裝到項目根目錄/module,

git clone https://github.com/tornoda/to-promise
或直接下載放入項目目錄下如:/module
在需要用到的地方引入
import toPromise from '/module/to-promise/src/index'
綁定微信全局對象(wx)到函數,以便可以取到微信得API
const toPromiseWx = toPromise(wx)
開始轉化你需要得異步API
//apiName為微信異步方法名,如對wx.request()進行轉化
const request = toPromiseWx('request')
//直接使用request方法

舉例:

import toPromise from '/module/to-promise/src/index'
//轉換wx.getStorage()
const getStorage = toPromsie(wx)('getStorage') 
//使用
getStorage({ key: 'test' })
 .then(
  (res) => {
   //res的值與wx.getStorage({ success: (res) => {} })中的res值一樣
   //res = {data: 'keyValue'}
   console.log(res.data)//控制臺打印storage中key對于的value
   return res.data//如果需要繼續鏈式調用轉化后的api,需要把值顯示返回
  },
  (err) => {
   //err的值與wx.getStorage({ success: (err) => {} })中的err值一樣
   throw err
  }
 )

關于Promise對象的使用,請參見Promise

API

toPromise(global)

參數

(wx): wx全局對象。即toPromise(wx)這樣調用

返回

(function): 參數(string)為小程序異步方法名。返回一個函數,該函數的參數與返回值如下。

參數:(object) 對應wx小程序異步方法中的參數(OBJECT)除去success與fail后的對象。例如:

官方APIwx.getLocation(OBJECT)的OBJECT接受如下屬性: type altitude success fail complete,那么去除(success fail)后為:type altitude complete。

返回: (pending Promsise) 返回一個未知狀態的Promise對象,在該對象上調用.then(onFulfilled, onRejected)方法來處理對用成功或失敗的情況。onFulfilled為請求成功后調用的回調函數,參數為返回值,onRejected為請求失敗后的回調函數,參數為返回的錯誤信息。

簡單點來說,

const getLocation = toPromiseWx('getLocation')
getLocation({
 type: 'wgs84',
 altitude: true,
 complete: () => { console.log('to-promsise is awesome') }
}).then(
 (res) => {//dosomething if succeed},
 (err) => {//dosomething if failed}
)

與下面官方調用等價

wx.getLocation({
 type: 'wgs84',
 altitude: true,
 complete: () => { console.log('to-promsise is awesome') },
 success: (res) => {//dosomething if succeed},
 fail: (err) => {//dosomething if failed}
})

應用場景舉例

  • 單次異步調用,參見API最后

  • 多次異步操作調用,且每下一次調用都會用到前一次返回的結果。

如:獲得GPS信息后,根據GPS信息獲取天氣信息,取得天氣信息后立馬存入localStorage。

import toPromise from '/module/to-promise/src/index'
const toPromiseWx = toPrmise(wx)
//方法轉換
const getLocation = toPromiseWx('getLocation')
const request = toPromiseWx('request')
const setStorage = toPromiseWx('setStorage')
//鏈式寫邏輯
getLocation() //獲取位置信息
 .then(
  (res) => { //位置獲取成功后的處理,res為返回信息
   //處理res后返回有用的信息,這里直接返回res,用于演示
   return Promise.resolve(res) //必須
  },
  (err) => { //位置獲取失敗后的錯誤處理,err為錯誤信息
   //錯誤處理
   return Promise.resolve(err) //必須
  }
 )
 .then(
  (res) => { //根據位置獲取成功后的信息,請求天氣信息
   return request({ url: 'http://api.weather.com'}) //返回一個pending 狀態下的Promise
  }
 )
 .then(
  (res) => { //天氣獲取成功后存入storage的回調
   setStorage({
    key: 'test',
    data: 'res'
   })
  },
  (err) => {
   //天氣獲取失敗后執行這里,err為獲取天氣失敗的錯誤信息
  }
 )

如果使用官方的API寫上述邏輯,代碼是這樣的:

wx.getLocation({
 success: (res) => {
  //some transformation with res
  wx.request({
   url: 'http://api.weather.com',
   success: (res) => {
    wx.setStorage({
     success: () => {
      //do something
     },
     fail: (err) => {
      //do something if err happend
     }
    })
   },
   fail: (err) => {
    //do something if err happend
   }
  })
 },
 fail: (err) => {
  //do something if err happend
})
//層層回調,如果邏輯再復雜點,可能就瘋了

感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信小程序如何實現異步API為Promise簡化異步編程”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湘阴县| 山丹县| 南城县| 千阳县| 太白县| 广丰县| 大化| 利川市| 山西省| 南木林县| 乳山市| 崇明县| 金昌市| 红安县| 澜沧| 陈巴尔虎旗| 青田县| 峨眉山市| 昌吉市| 上饶县| 莱州市| 枝江市| 修武县| 蓝山县| 长垣县| 竹山县| 金坛市| 绥宁县| 桐庐县| 游戏| 黑水县| 宁陵县| 黄山市| 运城市| 汉源县| 濮阳市| 安达市| 体育| 明光市| 玉树县| 七台河市|