Skip to content

idea2app/Taro-Fetch-polyfill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);