如何显示对象中存储在数组中的某些属性?

时间:2019-04-01 16:29:57

标签: html nativescript

我正在开发应用程序,并且正在使用Firebase存储作为我的数据库。 我正在从Firebase存储中获取一些数据,并希望显示在component.html中。

我将数据作为数组中的对象,所以我想显示数组中每个对象的一些属性。

这是我的代码,无法正常运行。

这是来自ts组件:

export class ClassComponent implements OnInit {
  title: string = "students";
  Usersarray: User[] = [];

  constructor(private service: FirebaseService) { }

  ngOnInit() {

    this.service.GetUsers().then(usersInClass => {

      this.Usersarray = usersInClass;
      console.log("from class component", this.Usersarray);

    })

  }
}

这是来自html组件:​​

<ScrollView>

    <StackLayout class="body">
        <ListView height="450" [items]="Usersarray">
            <ng-template let-item="item">
                <Label [text]="item.firstName"></Label>
            </ng-template>
        </ListView>
    </StackLayout>
</ScrollView>

0 个答案:

没有答案