我正在开发应用程序,并且正在使用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>