axios实例
<script>
//创建axios实例
let newVar = axios.create({
baseURL:'http://localhost:9999/student/student',
timeout:5000
})
let newVar1 = axios.create({
baseURL:'http://localhost:9999/student/student',
timeout:5
})
//调用实例
newVar({
url:'getAllStudent'
}).then(res=>{
console.log(res);
}).catch(err=>{
console.log(res);
})
newVar1({
url:'getAllstudent'
}).then(res=>{
console.log(res);
}).catch(err=>{
console.log(err);
})
</script>