摘要:
1.请求拦截器: 请求拦截器的作用是在请求发送前进行一些操作:// 后添加的拦截器,先执行!!! // 添加请求拦截器(回调函数) axios.interceptors.request.use( config=>{ console.log('request interceptor 请求拦截器1'); 阅读全文
摘要:
axios.defaults.baseURL只能请求一个端口 如果同时也要访问4000的接口, 就要用到 instance这个可以使用自定义配置创建axios的新实例(可以创建过个) 同时可以访问两个端口 阅读全文
摘要:
/* index.js */ /* GET请求 */ function testGet() { axios({ url:'http://localhost:3000/posts', method:'GET', params:{ id:2, xxx:"abc" } }).then(response=> 阅读全文
摘要:
<script> /* GET请求 */ function testGet() { axios({ url:'http://localhost:3000/posts', method:'GET', params:{ id:2, xxx:"abc" } }).then(response=>{ cons 阅读全文
摘要:
http请求 和 ajax请求: API: 阅读全文