是Vue.js的新手,我想将数据属性值传递给我的模板。
我有:
export default {
name: "profile",
data: () => ({
user:[]
}),
mounted() {
axios
.get('/api/user')
.then(function (response) {
this.user = response
})
.catch(function (response) {
console.error(response);
});
}
}
在HTML模板中我有:
<template>
<div>{{user.name }}</div>
</template>
现在我收到错误
无法设置
的属性user
undefined
console.log(response)
产生:
名称:“用户1”,//名称存在
电子邮件......
答案 0 :(得分:1)
尝试使用arrow function
进行axios回调
.then((response) => {
this.user = response
})
arrow function
按预期绑定组件上下文。
答案 1 :(得分:0)
在装载中:
mounted() {
var self = this;
axios.get('/api/user')
.then(function (response) {
self.user = response
})
.catch(function (response) {
console.error(response);
});
}
}