I would like to know how to filter and receive only the data I want on each page. my database.ts: 'getAllProducts () {
return new Promise<Produto[]>((resolve, reject) => {
let sql = "select * from tb_produto";
this.executeQuery(sql).then(data => {
let products = [];
data.forEach(function (row) {
let product: Produto = { id_produto: row[0], nom_produto: row[1], val_produto: row[2] }
products.push(product);
});
resolve(products);
}).catch(error => {
console.log(error);
});
});'
And my HTML: <ion-card *ngFor="let produto of produtos">
<ion-card-content>
<h6>Product ID: {{produto.id_produto}}</h6>
<h6>Product Name: {{produto.nom_produto}}</h6>
<h6>Product Price: {{produto.val_produto}} $</h6>
</ion-card-content>
</ion-card>
I want to show on each segment's tab only the content of it, but it's always showing all in all segments. If anyone can help me, thank you.