赞
踩
- axios.create({
- baseURL:'http://localhost:8080', // 请求的域名,基本地址
- timeout:1000, // 请求超时时长(ms)
- url:'/data.json', //请求路径
- method:'get,post,put,patch,delete', // 请求方法
- headers:{
- token:''
- }, // 请求头
- params:{}, //请求参数拼接在url上
- data:{}, //请求参数放在请求体
- })
-
- // 1.axios全局配置
- axios.defaults.timeout =1000
- axios.defaults.baseURL = 'http://localhost:8080'
- // 2.axios实例配置
- let instance = axios.create()
- instance.defaults.timeout = 3000
- // 3.axios请求配置
- instance.get('/data.json',{
- timeout:5000
- })
优先级别3 2 1
实际开发
- // 实际开发
- // 有两种请求接口:
- // http:localhost:9090
- // http:localhost:9091
- let instance = axios.create({
- baseURL:'http:localhost:9090',
- timeout:1000
- })
- let instance1 = axios.create({
- baseURL:'http:localhost:9091',
- timeout:3000
- })
- // baseUrl,timeout,url,method,params
- instance.get('/contactList',{
- params:{}
- }).then((res)=>{
- console.log(res)
- })
-
-
- 自己设置参数
- // baseUrl ,timeout:5000,method,url
- instance1.get('/orderList',{
- timeout:5000
- }).then(res=>{
- console.log(res)
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。