获取相同的数据到不同的firebase节点

时间:2017-05-14 08:30:54

标签: javascript angular firebase ionic2 angularfire2

在我的ionic2应用程序中,我必须显示来自不同节点的相同firebase数据。

image here

所以这是我的代码在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

0 个答案:

没有答案