基于FetchAPI封装的HTTPClientFetchHTTPClient.zip
一个基于 Fetch API 封装的 HTTP Client,可用于浏览器及其他兼容环境中,设计之初是为了ReactJS和ReactNative访问后端RestAPI使用。比其他基于Fetch API的封装优势在于,它的中间件机制支持对请求和应答进行异步处理。安装:npm install fetch-http-client --save使用:import FetchHttpClient, { json } from 'fetch-http-client'; // Create a new client object. const client = new FetchHttpClient('h
用户评论