“this.cameraPage”正确填充了文本输入,但是一旦我开始在输入字段中进行更改,Vue 事件处理程序就会抱怨 this.cameraPage 为空
"this.cameraPage" 是一个对象,并通过 JSON API 在 "created()" 中初始化。它成功加载,我可以根据需要使用该对象进行显示。
数据
data() {
return {
cameraPage: {},
}
创建
async created() {
let cameraPage = await this.$http.get('http://localhost:3001/api/v1/camera/' + this.keyColumn + '.json')
this.cameraPage = JSON.parse(JSON.stringify(cameraPage)).data
}
HTML
<input type="text" v-model="this.cameraPage.title"/>
我是 Vue 的初学者,我没有故意向 Input-text 字段添加事件处理程序,所以我猜这是一些“Vue-Magic”。当我真的不知道会发生什么时,我很难解决问题。
噜噜哒
慕仙森
相关分类