微信小程序的fetch接口实现
- 队列化请求,规避最高并发数量5个的限制
npm install wxapp-fetch --save
import wxFetch from 'wxapp-http';
wxFetch('https://www.google.com')
.then(function(res) {
return res.json();
})
.then(data => {
console.info(data);
})
.catch(err => {
console.error(err);
console.error(err.json());
});
wxapp-http 微信小程序的http模块,Tiny but Powerful
wxapp-XMLHttpRequest Web XMLHttpRequest implement for WeChat APP
wxapp-r2 r2 implement in Wechat App client
git clone https://github.com/axetroy/wxapp-fetch.git
cd ./wxapp-fetch
yarn
yarn start
- 打开微信web开发者工具, 加载wxapp-http/example目录
- 修改index.js
欢迎PR.
You can flow Contribute Guide
Axetroy 💻 🔌 |
---|
The MIT License