axios.defaults.baseURL = 'https://caeser.com'; axios.defaults.headers.common['Authorization'] = AUTH_TOKEN; axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
6.2 拦截器
//添加请求拦截器 axios.interceptors.request.use(function(config){ // before success // must return config // 必须返回config return config; }, function(error){ // error }) //添加响应拦截器 axios.interceptors.response.use(function(response){ // return response; },function(error){ // error });
或者自定义实体
var instance = axios.create(); instance.interceptors.request.use(function () {/*...*/});
7 总结
在学习vue的过程中是非常容易的,因为vue真的很方便使用,学起来很快,都是模板语法,直接COPY就行了,而且逻辑性很简单,就是在使用的时候,各种版本和插件要学会调试,多尝试多使用,而且为了好好写前端,我都下载了离线的CSS样式文件,因为很多样式我都没背下来,而且很多样式我都不知道,有很多新的好用的特性,都是值得使用的。