Axios 初探 elickzhao 发布于:Aug 1, 2017 简单用法 123456789101112/* 向具有指定ID的用户发出请求 *///其实和jq的ajax差不多 then 是成功返回执行其后任务,catch捕捉错误//其实就是 Promise 可以进行并发操作的 axios.all(iterable) 其实就是 promise.all()axios.get('/user?ID=12345') .then(function(response){ console.log(response); }) .catch(function(error){ console.log(error); }); 还有以下用法 1234567axios.request(config)axios.get(url [,config])axios.delete(url [,config])axios.head(url [,config])axios.post(url [,data [,config]])axios.put(url [,data [,config]])axios.patch(url [,data [,config]]) 创建实例使用 1234567891011121314151617181920const ajaxUrl = env === 'development' ? 'http://127.0.0.1:3000' : env === 'production' ? 'https://www.url.com' : 'https://debug.url.com';util.ajax = axios.create({ baseURL: ajaxUrl, timeout: 30000});//这样使用 这样就不用每次都写那个很长的请求地址了 Util.ajax.get('users', { //只能用get 是请求 post是创建 params: { user: this.formInline.user, password: this.formInline.password } }) 参考文档Axios全攻略axios基本用法 更新于:Sep 10, 2021 js vue js vue CSS3之Transition(变换过渡)使用 12345678910111213141516171819202122transition: property duration timing-function delay;/*property... vue键盘监听事件 聚焦一个焦点,判断键值这么写 123456789101112131415161718192021222324252627<html><head> <meta ...