мой код ниже получает все динамические данные из firebase, и я хочу передать весь объект на другую страницу, когда инициируется событие onClick
public placeref = firebase.database().ref('cart');
placeOrd(){
this.placeref
.once('value')
.then(snapshot => snapshot.val())
.then(items => console.log(items));
}
страница, где я хочу передать данные
item : Item
ionViewDidLoad() {
console.log('ionViewDidLoad PlacedPage');
this.navParams.get('item');
console.log(this.navParams.get('item'));
}
мой HTML-файл, где инициировано placeOrd
<ion-list *ngFor="let item of orderList$ | async">
<ion-item>
<ion-label text-wrap>
<h2 style="font-weight: bold">{{item?.name}}</h2>
<!-- <ion-input type="hidden" [(ngModel)]="placed.name" [value]="item?.name">{{item?.name}}</ion-input>-->
<p style="color: black">Quantity : {{item?.qty}}</p>
<!-- <ion-input type="hidden" [(ngModel)]="placed.qty" [value]="item?.qty">{{item?.qty}}</ion-input>-->
<p style="color: black">Price : {{item?.price}}</p>
<p class="pr" style="font-weight: bold; color: black">Total :</p><p class="pr" style="color: red"> {{item?.total}}</p>
<button ion-button block clear color="default" (click)="removeItem(item)" >Delete Order</button>
</ion-label>
</ion-item>
</ion-list>
<p style="color: black;">Total Vat(12%) : {{vatTotal}}</p>
<p style="color: black">Price Subtotal : {{priceTotal}}</p>
<label style="font-weight: bold; font-size: 18px;">Order Total :</label>
<ion-input type="number" [value]="vatTotal + priceTotal" required="true" disabled="true" style="font-size: 18px;">{{vatTotal + priceTotal}}</ion-input>
<button ion-button block clear (click)="placeOrd()">Submit Order</button>
вывод журнала консоли, где все мои динамические данные были названы