我正在努力处理这段代码,由于某种原因retrieveTutorials()它没有将信息传递给baseDeDatosVias。我尝试将该功能更改为另一个生命周期,但不起作用。也许解决方案真的很简单,但我找不到它。提前感谢您的帮助!!
methods: {
retrieveTutorials() {
TutorialDataService.get(this.$auth.user.name)
.then(response => {
this.baseDeDatosVias = response.data;
console.log(this.baseDeDatosVias);
})
.catch(e => {
console.log(e);
});
},
populateGrados() {
this.retrieveTutorials();
this.cantViasEncadadenasPorGrados= [];
const keys = Object.keys(this.baseDeDatosVias);
console.log(keys);
(我知道还必须纠正所有“else if”)
完整代码如下:
{{stats.footerText}}Vias encadenadas por grado
Por cantidad
Progresion en el tiempo
Proximamente
Encadenes
A Vista
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
看起来像是异步问题 - 尝试:
async populateGrados() { await this.retrieveTutorials(); // rest of the code }