vue axios 4 实例化

vim demon03.vue

<template>
  <div class="home">
  </div>
</template>
<script>
import axios from ‘axios‘
export default {
  name: ‘demon03‘,
  components: {},
  created() {
    //创建axios实例
    //axios实例:当后端地址有多个,并且超时时长不一样
    let instance01 = axios.create({
      baseURL: ‘http://127.0.0.1:8080‘,
      timeout: 1000
    })
    let instance02 = axios.create({
      baseURL: ‘http://127.0.0.1:8090‘,
      timeout: 1500
    })
    //使用axios实例
    instance01.get(‘/data.json‘).then(res=>{
      console.log(res)
    })
    instance02.get(‘city.json‘).then(res=>{
      console.log(res)
    })
  }
}
</script>

 

vue axios 4 实例化

上一篇:Android 超简单集成活体检测技术 快速识别“假脸”


下一篇:OPPO App认领签名错误:找不到key0.jks的证书链。key0.jks必须引用包含私有密钥和相应的公共密钥证书链的有效密钥库密钥条目。