Taro 3+ 非官方 W3C fetch()
API 补丁
❗因小程序锁定了全局对象,无法采用标准的 polyfill 方式,只能用 ponyfill 来导入。
import { fetch } from 'taro-fetch-polyfill';
fetch('https://api.github.com')
.then(response => response.json())
.then(console.log);
W3C fetch() API polyfill for Taro 3+
Homepage Repository npm TypeScript Download
npm install taro-fetch-polyfill@0.5.0
Taro 3+ 非官方 W3C fetch()
API 补丁
❗因小程序锁定了全局对象,无法采用标准的 polyfill 方式,只能用 ponyfill 来导入。
import { fetch } from 'taro-fetch-polyfill';
fetch('https://api.github.com')
.then(response => response.json())
.then(console.log);