注意事项
还有一些注意事项来完善它
语义化版本
¥Semver
在 axios 达到 1.0
版本之前,重大更改将与新的次要版本一起发布。例如,0.5.1
和 0.5.4
将具有相同的 API,但 0.6.0
将进行重大更改。
¥Until axios reaches a 1.0
release, breaking changes will be released with a new minor version. For example 0.5.1
, and 0.5.4
will have the same API, but 0.6.0
will have breaking changes.
Promise
axios 依赖于原生的 ES6 Promise 实现来 支持。如果你的环境不支持 ES6 Promise,你可以 polyfill。
¥axios depends on a native ES6 Promise implementation to be supported. If your environment doesn't support ES6 Promises, you can polyfill.
TypeScript
axios 包含 TypeScript 定义。
¥axios includes TypeScript definitions.
import axios from 'axios';
axios.get('/user?ID=12345');
资源
¥Resources
致谢
¥Credits
axios 深受 Angular 中提供的 $http 服务 的启发。最终,axios 致力于提供独立的类似 $http
的服务,以便在 Angular 之外使用。
¥axios is heavily inspired by the $http service provided in Angular. Ultimately axios is an effort to provide a standalone $http
-like service for use outside of Angular.
许可证
¥License