我制作了一个 API 来显示用户的关注者和关注用户。一切都在屏幕上正确显示。但问题是,如果我在console.log()调用它说它是一个空数组的方法后尝试存储它的数组。我真的被困住了,不知道该怎么办。这是我的示例,有人可以帮忙或遇到同样的问题请告诉我。
使用 OnInit:
ngOnInit(): void {
localStorage.setItem("gd", "78F88FC0-7A58-49CD-881E-4B36C5C29B71");
this.getUsers();
this.getFollowing();
this.getFollowers();
console.log("Followers: ", this.followers)
console.log("Following: ", this.following)
}
方法:
getUsers() {
this._userService.getUsers().subscribe(res => {
this.users = res;
})
}
getFollowing() {
this._userService.getFollowing().subscribe(res => {
this.following = res;
})
}
getFollowers() {
this._userService.getFollowers().subscribe(res => {
this.followers = res;
})
}
安慰:
HTML 输出:
RISEBY
相关分类