0
업데이트 ngfor 각도 : 또한 내 솔루션 아래약속 및 비동기 파이프와
을하고있다. 내가 local storage
부패를 저질렀습니다. 그것이 일하지 않는 이유였습니다.
질문 :
당신이 promise
/async
파이프와 ngfor
을 사용하는 방법을 말해 줄래? 나는 아래와 같이 시도했다. 그러나 그것은 효과가 없다.
HTML
<ion-item *ngFor="let c of contacts | async">
<ion-label fixed>c.name</ion-label>
</ion-item>
TS
contacts: Promise<Contact[]>;
constructor() {
this.getContacts()
}
getContacts() {
this.contacts = this.storage.get('contacts').then((val: Contact[]) => {
console.log('log', val);
return val;
});
}
고맙습니다. 이것은 작동 중입니다 :) – Sampath