我还有一个小时就要开始学VueJS了。我使用Axios发出了一个get请求,它按预期返回了一些数据,但是我无法在mounted函数中访问应用程序的数据属性来分配请求的结果。控制台登录到
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);
})
}
})