Consider this:
export interface Producao {
key?: string;
titulo: string;
categoria: string;
descricao: string;
url: string;
}
import { Storage } from '@ionic/storage';
public prods$: Observable<Producao[]>;
Is it possible to store this observable and access his parameters like ‘key’? For example: I would to store one type of Producao (with the key, titulo, categoria, descricao, url) into a local observable array, then store another and another…
Later in my project i want to show this Observable<Producao[]> using ngFor with async. Is this possible?