gpt4 book ai didi

javascript - Angular then 不是一个函数

转载 作者:行者123 更新时间:2023-11-30 14:43:12 25 4
gpt4 key购买 nike

打字代码:

helloworld(){
this.get_data().then(data => {
console.log(data);
});
}

get_data(){
return this.http.get('assets/data/user.json').map(res => res.json()).subscribe(data => {
return this.json_data = data;
});
}

任何人都可以告诉我为什么 then 不起作用。我该如何解决这个问题?抱歉我的英语不好。

最佳答案

您不能在订阅 上执行then。您有一个生成数据流的 observable,这意味着您实际上无法知道该流何时结束。

另一方面,thenpromises 一起使用。 promise 只返回 ONE 数据。一旦数据到达,then 就会激活。

在您的情况下,您需要执行以下操作:

helloworld(){
this.get_data().subscribe(data => {
console.log(data);
})
}

get_data(){
return this.http.get('assets/data/user.json').map(res => res.json());
}

关于javascript - Angular then 不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49336320/

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