1
我有簡單的GET
請求,這會帶來一些數據顯示。是否可以在Angular 2中從JS創建HTML項目?
this.apiRequest.get(url)
.map(response => response.json())
.subscribe(response => {
this.notes = response.notes
loader.dismiss()
}, err => {
loader.dismiss()
})
那麼我告訴它:
<ion-item *ngFor="let note of notes" text-wrap>
<!-- data -->
</ion-item>
的主要問題是,當有大量的notes
裝載機駁回顯示所有項目之前。
我需要JS循環ngFor
然後隱藏裝載機或HTML
某種程度上禁用加載...