基于 Fetch API 封装的 HTTP Client Fetch HTTP Client
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/starlight36/fetch-http-client
- 软件文档: https://github.com/starlight36/fetch-http-client/blob/master/README.md
软件介绍
一个基于 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('http://api.example.com/endpoint');
// Add access token
client.addMiddleware(request => {
request.options.headers['X-Access-Token'] = 'secret';
});
// Add json support
client.addMiddleware(json());
// Add Logging
client.addMiddleware(request => response => {
console.log(request, response);
});
// Fire request.
client.get('test').then(response => console.log(response.jsonData));
// Path variables support.
client.get('users/{id}', { uriParams: { id: 1 } }).then(response => console.log(response.jsonData));预处理异步请求的中间件示例,从存储中异步读取accessToken,并添加到请求头中:
// Add access token asynchronously
client.addMiddleware(request => {
return AsynchronousStorage.fetch('accessToken').then(token => {
request.options.headers['X-Access-Token'] = token;
return request;
});
});
信息学奥林匹克教程·提高篇
吴耀斌 / 湖南师范大学出版社 / 2003-1 / 24.00元
《信息学奥林匹克教程》(提高篇)既有各个算法设计基本思路的讲解及对求解问题的分析,注重了算法引导分析与不同算法的比较,又给出了具体的编程思路与参考程序,程序采用信息学竞赛流行的Turbo Pascal7.0语言编写,并注重结构化与可读性。一起来看看 《信息学奥林匹克教程·提高篇》 这本书的介绍吧!
