taro-fetch-polyfill

W3C fetch() API polyfill for Taro 3+


Keywords
w3c, fetch, api, polyfill, taro, wechat, mini-app, mini-program
License
LGPL-3.0
Install
npm install taro-fetch-polyfill@0.5.0-rc.0

Documentation

Taro Fetch polyfill

Taro 3+ 非官方 W3C fetch() API 补丁

CI & CD

NPM

用法

import 'taro-fetch-polyfill';

fetch('https://api.github.com')
    .then(response => response.json())
    .then(console.log);