export default {
data(){
return{
url:'www.aa.com',
}
},
mounted(){
this.getC();
},
methods:{
getC:function(){
$.ajax({
url:this.url+'/api/',
type:'get',
dataType:"json",
success(res){
console.log(res)
}
})
}
}
}
假设这样请求,为什么url会加上本地URL呢??
怎么解决??
GET http://localhost:8080/www.aa.com/api/ 404 (Not Found)
其他页面都没有请求,只有这一个页面发生请求。
相关分类