摘要: 1.请求拦截器: 请求拦截器的作用是在请求发送前进行一些操作:// 后添加的拦截器,先执行!!! // 添加请求拦截器(回调函数) axios.interceptors.request.use( config=>{ console.log('request interceptor 请求拦截器1'); 阅读全文
posted @ 2020-06-13 17:25 飞鸟和蝉- 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: axios.defaults.baseURL只能请求一个端口 如果同时也要访问4000的接口, 就要用到 instance这个可以使用自定义配置创建axios的新实例(可以创建过个) 同时可以访问两个端口 阅读全文
posted @ 2020-06-13 16:26 飞鸟和蝉- 阅读(4910) 评论(0) 推荐(0) 编辑
摘要: /* index.js */ /* GET请求 */ function testGet() { axios({ url:'http://localhost:3000/posts', method:'GET', params:{ id:2, xxx:"abc" } }).then(response=> 阅读全文
posted @ 2020-06-13 15:07 飞鸟和蝉- 阅读(333) 评论(0) 推荐(0) 编辑
摘要: <script> /* GET请求 */ function testGet() { axios({ url:'http://localhost:3000/posts', method:'GET', params:{ id:2, xxx:"abc" } }).then(response=>{ cons 阅读全文
posted @ 2020-06-13 15:01 飞鸟和蝉- 阅读(356) 评论(0) 推荐(0) 编辑
摘要: http请求 和 ajax请求: API: 阅读全文
posted @ 2020-06-13 11:23 飞鸟和蝉- 阅读(1175) 评论(0) 推荐(0) 编辑