我试图在Ionic 3中使用虚拟滚动,但它无效。
我的提供商有这个功能:
getActiveAds(){
return this.afDb.list<AngularFireList<any>>('/ads-active', ref => ref.orderByChild('adPlanPriority').startAt(1).endAt(3))
}
在我的列表页面上,我有这个:
constructor(public navCtrl: NavController, public navParams: NavParams, public loadingCtrl: LoadingController, public adProvider: AdProvider) {
this.loading = this.loadingCtrl.create();
this.loading.present();
this.ads = this.adProvider.getActiveAds().valueChanges()
this.ads.subscribe((cat)=> {
this.loading.dismiss()
})
}
和我的list.html:
<ion-list no-lines [virtualScroll]="ads | async">
<button ion-item *virtualItem="let ad" (click)="onAdSelect(ad)" class="aero-item ">
<ion-thumbnail item-start>
<img src="assets/images/noimage.jpg" />
</ion-thumbnail>
<h2>{{ ad.model}}</h2>
</button>
</ion-list>
使用此代码,我收到此错误:
Cannot read property 'length' of null
TypeError: Cannot read property 'length' of null
at VirtualScroll._stepDOMWrite (http://localhost:8100/build/vendor.js:92118:60)
at http://localhost:8100/build/vendor.js:92078:23
at dispatch (http://localhost:8100/build/vendor.js:20601:9)
at DomController._flush (http://localhost:8100/build/vendor.js:20545:13)
at rafCallback (http://localhost:8100/build/vendor.js:20534:22)
我做错了什么?
答案 0 :(得分:0)
我遇到了同样的问题并找到了解决方法,尽管它并不是最佳的。
您可以从the documentation [virtualScroll]
看到数组。当您的this.ads
返回可观察时。这就是你Cannot read property 'length' of null
的原因。
解决方法:首先订阅它然后在视图上显示(没有异步管道),完成后还要记住unsubsribe。
ads: any[] = [];
constructor(public adProvider: AdProvider) {
this.adProvider.getActiveAds().valueChanges().subscribe(results => this.ads = results);
}