gpt4 book ai didi

ajax - beforeCreate Hook 中的 Vue 2.1 调用方法不起作用

转载 作者:搜寻专家 更新时间:2023-10-30 22:10:04 25 4
gpt4 key购买 nike

我在创建组件之前对一些本地 json 数据进行异步调用。所以这段代码实际上工作正常:

  beforeCreate : function() {
var self = this;
fetch('/assets/data/radfaces.json')
.then(function(response) { return response.json()
.then( function(data) { self.users = data; } );
})
.catch(function(error) {
console.log(error);
});
},

现在我只想重构并将它移到一个单独的方法中:

  beforeCreate : function() {
this.fetchUsers();
},

methods: {
fetchUsers: function() {
var self = this;
fetch('/assets/data/radfaces.json')
.then(function(response) { return response.json()
.then( function(data) { self.users = data; } );
})
.catch(function(error) {
console.log(error);
});
}
}

现在一切都停止了。我收到一个错误:app.js:13 Uncaught TypeError: this.fetchUsers is not a function(...)

为什么我无法访问 beforeCreate Hook 中的 fetchUsers 方法?解决方法是什么?

最佳答案

因为 methods 还没有初始化。解决这个问题的最简单方法是使用 created Hook :

  created : function() {
this.fetchUsers();
},

methods: {
fetchUsers: function() {
var self = this;
fetch('/assets/data/radfaces.json')
.then(function(response) { return response.json()
.then( function(data) { self.users = data; } );
})
.catch(function(error) {
console.log(error);
});
}
}

关于ajax - beforeCreate Hook 中的 Vue 2.1 调用方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40890389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com