var a
let id2=100
let url2="http://localhost:8080/axios/findUserById?id="+id2
async function getdata(){
await axios.get(url2)
.then(promise=>{
console.log(promise.data.id)
this.a=promise.data.id
alert(a)
})
}