wx promise request
支持自定并发数功能
wx-promise-request は、WeChat アプレットのwx.request
メソッドが Promise と同時実行をサポートしていない問題の解決策です。同時実行性の問題のみを解決する必要がある場合は、私の wx-queue-request を使用できます。
npmを使用してダウンロードできます
$ npm i wx-promise-request
右クリックして、index.js ファイルを保存することもできます。
import { request } from './wx-promise-request' ;
request ( {
url : 'test.php' ,
data : {
x : '' ,
y : '' ,
} ,
header : {
'content-type' : 'application/json' ,
} ,
} )
. then ( res => console . log ( res ) )
. catch ( error => console . error ( error ) )
setConfig(object)
wx-promise-request の動作は、setConfig を通じて設定できます。
財産 | 説明する | タイプ | デフォルト値 |
---|---|---|---|
リクエスト | ネットワークリクエストを開始する機能 | 関数 | wx.リクエスト |
約束 | お約束機能 | 関数 | es6-約束 |
同時実行性 | 同時実行の最大数 | 番号 | 10 |
import { request , setConfig } from './wx-promise-request' ;
import qcloud from './vendor/qcloud-weapp-client-sdk/index' ;
import Promise from 'bluebird' ;
// 根据自身需求,来定制 request
setConfig ( {
request : qcloud . request , // 使用 qcloud 提供的请求方法
Promise , // 使用 bluebird 作为 Promise
concurrency : 5 , // 限制最大并发数为 5
} )
request ( {
url : 'test.php' ,
} )
. then ( res => console . log ( res ) )
. catch ( error => console . log ( error ) ) ;
マサチューセッツ工科大学