我無法使用此函數返回值,因爲它是空的。如何在axios之外設置變量獲取
getNameById (id) {
var name = ''
axios.get('/names/?ids=' + id)
.then(response => {
this.response = response.data
name = this.response[0].name
})
.catch(e => {
this.errors.push(e)
})
// Is empty
console.log('Name ' + name)
return name
}
如何訪問「then」中的name變量並返回它?
是的,它不會從我回到 – John