codecamp

Axios 尾篇

Promise

axios 依赖原生的 ES6 Promise 实现而被支持,如果你的环境不支持 ES6 Promise,可以使用 polyfill


TypeScript

axios 包括 TypeScript 定义:

import axios from 'axios';
axios.get('/user?ID=12345');


Credits

axios 深受 Angular 提供的 $http 服务启发,最终,axios 是为了在 Angular 之外使用而提供独立的类似 $http 服务。


协议

MIT

使用 application/x-www-form-urlencoded 格式
vue-axios
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

无标题目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }