var txt='33';
this.Axios.post("/api/Event/get_serve_name",data,{headers:{'Authorization':localStorage.gw_token}}).then(res=>{
console.log(res)
txt=res.data.HttpData.data[0].txt;
})
return txt;
如上面的代码,我们再调用之后得到的是33,而不是我们请求之后的数据,这是因为请求是异步的。我们如何实现最后返回的值是我们请求的数据呢?大家有什么操作
Promise
Callback