【发布时间】:2018-08-20 11:24:20
【问题描述】:
我使用 Axios 发出了一个 get 请求,该请求按预期返回了一些数据,但我无法在挂载函数中访问应用程序的数据属性来分配请求的结果。到this.productList 的控制台日志返回undefined。谁能指出我正确的方向?
new Vue({
el: '#products',
data: function(){
return{
test: 'Hello',
productList: null
}
},
mounted: function(){
axios.get('https://api.coindesk.com/v1/bpi/currentprice.json').then(function(response){
console.log(response.data);
console.log(this.productList)
}).catch(function(error){
console.log(error);
})
}
})
【问题讨论】:
标签: javascript vue.js vuejs2 axios