在我的ionic2应用程序中,我必须显示来自不同节点的相同firebase数据。
所以这是我的代码在page.ts
ionViewDidLoad() {
console.log('ionViewDidLoad RankviewPage');
this.students=this.studentservice.getlastmonthexamusers();
}
这是学生服务中的代码
getlastmonthexamusers(){
this.examstudents=this.af.database.list('/userss/');
return this.examstudents;
}
在考勤节点中有相同的用户,它只包含用户节点中的密钥。我还需要用用户详细信息显示这些数据。
任何人都可以挽救我的一天吗?
app处于ionic2 angular2