1.之前请求是这样写的
getAllbooks(){
axios.get('http://123.57.109.30:30061/api/getbooks').then(res =>{
console.log(res);
})
},
getBookByName (){
axios.get('http://123.57.109.30:30061/api/getbooks',{
params:{
bookname:this.bookname
}
// post请求参数 axios.post('url',data)
})
.then(res =>console.log(res,'2222'))
}
全局配置默认值是
1.首先写全局配置
axios.defaults.baseURL = 'http://123.57.109.30:30061';
下边再同一接口的话 就直接拼写后边的路径就行了
getAllbooks(){
axios.get('/api/getbooks').then(res =>{
console.log(res);
})
},
getBookByName (){
axios.get('/api/getbooks',{
params:{
bookname:this.bookname
}
// post请求参数 axios.post('url',data)
})
.then(res =>console.log(res,'2222'))
}