我正在使用 Ionic电子商务应用,并使用Laravel中制作的API。我已经在购物车中添加了产品,但是当我增加购物车中的产品数量时,产品的价格在增加,但是总价没有更新,并且从购物车中移除产品时,它也没有更新价格
这是我的 cart.html :
<ion-header>
<ion-navbar color="primary">
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>
Your Cart
</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<ion-list *ngFor="let itm of cartItems" class="myitem11">
<ion-item>
<ion-thumbnail item-start >
<img src="{{itm.image}}">
</ion-thumbnail>
<h2>{{itm.name}}</h2>
<p>Actual Price:
<span [ngStyle]="itm?.discountp === '0' ? {'text-decoration':'none'} : {'text-decoration':'line-through'}">
₹{{itm.disprice * itm.count}}
</span>
</p>
<p>Discount: {{itm?.discountp}}%</p>
<ion-row class="item-count">
<ion-col class="qty">
<button (click)="decreaseProductCount(itm)" clear ion-button small color="dark" class="mewbtn11">
-
</button>
<button ion-button small clear color="dark" class="mewbtn11">
{{itm?.count}}
</button>
<button (click)="incrementProductCount(itm)" clear ion-button small color="dark" class="mewbtn11">
+
</button>
</ion-col>
</ion-row>
<p>Discounted Price: ₹{{itm.productPrice * itm.count}}</p>
<button ion-button icon-only clear item-end (click)="removeItem(itm)"><ion-icon class="mycaicon11" name="ios-trash-outline"></ion-icon></button>
</ion-item>
</ion-list>
</ion-content>
<ion-footer class="single-footer" ngif="!isEmptyCart">
<ion-grid>
<ion-row>
<ion-col class="addCart" (click)="checkpage()">
<button color="secondary" full="" ion-button="" round="true">
{{totalAmount}} Checkout
</button>
</ion-col>
</ion-row>
</ion-grid>
</ion-footer>
这是我的 cart.ts :
import { CheckoutPage } from './../checkout/checkout';
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams, LoadingController, AlertController } from 'ionic-angular';
import { CartProvider } from "../../providers/cart/cart";
@IonicPage()
@Component({
selector: 'page-cart',
templateUrl: 'cart.html',
})
export class CartPage {
cartItems: any[] = [];
totalAmount: number = 0;
isCartItemLoaded: boolean = false;
isEmptyCart: boolean = true;
productCount: number = 1;
constructor(public navCtrl: NavController, public navParams: NavParams, private cartService: CartProvider, public loadingCtrl: LoadingController, private alertCtrl: AlertController, private cdr: ChangeDetectorRef) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad CartPage');
this.cartService.getCartItems().then((val) => {
this.cartItems = val;
console.log(val);
});
this.loadCartItems();
}
loadCartItems() {
let loader = this.loadingCtrl.create({
content: "Wait.."
});
loader.present();
this.cartService
.getCartItems()
.then(val => {
this.cartItems = val;
if (this.cartItems.length > 0) {
this.cartItems.forEach((v, indx) => {
this.totalAmount += parseInt(v.totalPrice);
console.log(this.totalAmount);
});
this.cdr.detectChanges();
this.isEmptyCart = false;
}
this.isCartItemLoaded = true;
loader.dismiss();
})
.catch(err => {});
}
removeItem(itm) {
let alert = this.alertCtrl.create({
title: 'Remove Product',
message: 'Do you want to remove this product?',
buttons: [
{
text: 'Cancel',
role: 'cancel',
handler: () => {
console.log('Cancel Clicked');
}
},
{
text: 'Yes',
handler: () => {
this.cartService.removeFromCart(itm).then(() => {
this.loadCartItems();
});
}
}
]
});
alert.present();
}
checkpage()
{
this.navCtrl.push(CheckoutPage);
}
decreaseProductCount(itm) {
if (itm.count > 1) {
itm.count--;
this.cdr.detectChanges();
}
}
incrementProductCount(itm) {
itm.count++;
this.cdr.detectChanges();
}
}
这是我的购物车服务:提供者>购物车> cart.ts :
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Storage } from '@ionic/storage';
const CART_KEY = 'cartItems';
@Injectable()
export class CartProvider {
constructor(public http: HttpClient, public storage: Storage) {
console.log('Hello CartProvider Provider');
}
addToCart(productdet) {
return this.getCartItems().then(result => {
if (result) {
if (!this.containsObject(productdet, result)) {
result.push(productdet);
return this.storage.set(CART_KEY, result);
} else {
let index = result.findIndex(x => x.product_id == productdet.product_id);
let prevQuantity = parseInt(result[index].count);
productdet.count = (prevQuantity + productdet.count);
let currentPrice = (parseInt(productdet.totalPrice));
productdet.totalPrice = currentPrice;
result.splice(index, 1);
result.push(productdet);
return this.storage.set(CART_KEY, result);
}
} else {
return this.storage.set(CART_KEY, [productdet]);
}
})
}
removeFromCart(productdet) {
return this.getCartItems().then(result => {
if (result) {
var productIndex = result.indexOf(productdet);
result.splice(productIndex, 1);
return this.storage.set(CART_KEY, result);
}
})
}
removeAllCartItems() {
return this.storage.remove(CART_KEY).then(res => {
return res;
});
}
containsObject(obj, list): boolean {
if (!list.length) {
return false;
}
if (obj == null) {
return false;
}
var i;
for (i = 0; i < list.length; i++) {
if (list[i].product_id == obj.product_id) {
return true;
}
}
return false;
}
getCartItems() {
return this.storage.get(CART_KEY);
}
}
问题是,当我增加购物车页面中的数量时,它没有更新总价,而且在移除产品时也会发生这种情况。这是我的购物车页面的演示。它采用产品的原始价格,这就是为什么它无法更新总价。我要从购物车产品中获取总价,并且当产品数量增加时,它就是更新价格;当产品卸下时,它也将更新价格。非常感谢您的帮助。
答案 0 :(得分:5)
在我更彻底地检查了代码之后,我正在更新答案(最初我怀疑变更检测问题,但实际上我认为问题在于totalAmount变量的处理方式)。
如果我们遵循您的代码,然后查看totalAmount var发生了什么变化: -首先在cart.ts中将其设置为0 -然后,每次调用cart.ts中的loadCartItems()方法时,它都会更新,因为该方法从持久性(离子存储)中获取数据
自然地,当您使用以下方法更新数量时:
decreaseProductCount(itm) {
if (itm.count > 1) {
itm.count--;
}
}
incrementProductCount(itm) {
itm.count++;
}
由于您不执行任何代码来执行此操作,因此totalAmount不会得到更新。要更新totalAmount作为这些方法的一部分,我建议添加此方法:
recalculateTotalAmount() {
let newTotalAmount = 0;
this.cartItems.forEach( cartItem => {
newTotalAmount += (cartItem.productPrice * cartItem.count)
});
this.totalAmount = newTotalAmount;
}
现在您可以通过以下方法更新总价:
decreaseProductCount(itm) {
if (itm.count > 1) {
itm.count--;
this.recalculateTotalAmount();
}
}
incrementProductCount(itm) {
itm.count++;
this.recalculateTotalAmount();
}
更新:
现在也要解决您在评论中提到的问题(“从购物车中删除产品不会更新总价,并且当我从数量为2的产品页面添加产品时,在购物车中会显示价格仅针对数量1,然后单击购物车中的数量按钮,它会更新价格。“)在loadCartItems中,您现在可以使用相同的重新计算方法:
loadCartItems() {
let loader = this.loadingCtrl.create({
content: "Wait.."
});
loader.present();
this.cartService
.getCartItems()
.then(val => {
this.cartItems = val;
if (this.cartItems.length > 0) {
this.isEmptyCart = false;
this.recalculateTotalAmount();
}
this.isCartItemLoaded = true;
loader.dismiss();
})
.catch(err => {});
}
PS:我还注意到,在此方法中,您两次对持久性进行了相同的调用:
ionViewDidLoad() {
console.log('ionViewDidLoad CartPage');
// I would remove the commented below as your method below does the same work
//this.cartService.getCartItems().then((val) => {
//this.cartItems = val;
//console.log(val);
//});
this.loadCartItems();
}
我认为您应该删除第一个调用,因为loadCartItems基本上可以完成相同的工作。
UPDATE2:
在removeItem方法中,调用removeFromCart会按顺序返回promise,而在第一个之后调用loadCartItems。要解决此问题,您可以将两个异步操作包装到一个Promise中。
removeItem(itm) {
let alert = this.alertCtrl.create({
title: 'Remove Product',
message: 'Do you want to remove this product?',
buttons: [
{
text: 'Cancel',
role: 'cancel',
handler: () => {
console.log('Cancel Clicked');
}
},
{
text: 'Yes',
handler: () => {
this.cartService.removeFromCart(itm).then(() => {
this.loadCartItems();
});
}
}
]
});
alert.present();
}
在提供者中进行了重做:
removeFromCart(productdet) {
return new Promise((resolve,reject) => {
this.getCartItems().then(result => {
if (result) {
var productIndex = result.indexOf(productdet);
result.splice(productIndex, 1);
this.storage.set(CART_KEY, result).then(()=>{ resolve() })
}
})
})
PSS:我还觉得持久存储购物车是可以的,但是对于您而言,这成为您购物车的真理之源。也许最好将所有购物车数据存储在内存中,然后仅将其数据懒惰地保存到Ionic Storage。
答案 1 :(得分:2)
totalAmount没有更新,因为您的代码从不更新;) 有很多方法可以解决此问题。正如谢尔盖·鲁登科(Sergey Rudenko)所建议的那样,添加一个功能,该功能在每次修改项目计数时执行计算。 另一种方法是创建一个执行如下操作的管道:
import { Pipe, PipeTransform } from "@angular/core";
@Pipe({
name: "totalAmount",
})
export class TotalAmountPipe implements PipeTransform {
public transform(cartItems: any): number {
if(!cartItems || !cartItems.length) {
return 0;
}
return cartItems.reduce( (acc, curr) => { return acc + (curr.count * curr. productPrice)}, 0 );
}
}
然后,您需要将此Pipe添加到模块声明中,并在html中使用replace
<button color="secondary" full="" ion-button="" round="true">
{{totalAmount}} Checkout
</button>
使用
<button color="secondary" full="" ion-button="" round="true">
{{cartItems | totalAmount}} Checkout
</button>