【发布时间】:2017-05-28 19:47:49
【问题描述】:
我不能使用这个函数返回一个值,因为它是空的。
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 变量并返回它?
【问题讨论】:
-
是的,它不会返回
标签: javascript axios