【发布时间】:2020-05-05 04:33:05
【问题描述】:
我想添加带有 firebase 数据库的卡片。我的代码:
//home.page.ts
loadTinderCards() {
this.cards = [
{
img: "https://placeimg.com/300/300/nature",
title: "Demo card 1",
description: "This is a demo cards"
},
]
};
我不想把每张卡片一张一张地写下来。
//home.page.html
<ion-content>
<ion-refresher slot="fixed" (ionRefresh)="loadTinderCards()">
<ion-refresher-content></ion-refresher-content>
</ion-refresher>
<tinder-ui [cards]="cards" (choiceMade)="logChoice($event)"></tinder-ui>
</ion-content>
【问题讨论】:
-
我想通过我的addpage添加卡片。
-
我想从我的“添加”页面添加一些信息(文本或图片)。所有这些信息都会出现在我的“首页”上。
标签: javascript firebase ionic-framework firebase-realtime-database ionic4