HarmonyOS鸿蒙Next中《仿盒马》app开发技术分享10--加入购物车&购物车列表静态展示(端云一体)

HarmonyOS鸿蒙Next中《仿盒马》app开发技术分享10–加入购物车&购物车列表静态展示(端云一体)

开发准备

上一节我们实现了商品详情页面的规格选择弹窗,这在任何购物类应用中都是最常用的功能之一。当然了,作为一个购物类的应用,我们仅仅展示是用处不大的,我们还需要有添加的动作。这一节我们就来实现添加到购车里并且在购物车内简单展示的功能。

功能分析

  1. 加入购物车
    我们已经实现了弹窗,加入购物车就需要在切换规格的同时,点击提交对应的数据,这里要注意,我们针对同一个数据,是不需要创建多条的,仅仅需要修改加购的商品数量即可,所以这里我们还需要先查在加,防止同一条数据分开生成多条

  2. 加购列表展示
    这里就是针对我们已经添加的数据进行一个简单的列表展示,只需要查询出来展示即可

代码实现

首先在点击事件中我们实现先查后加的逻辑,根据当前选中的规格下标id和商品id作为条件去查询,根据返回数据的条目来进行针对性的处理

let databaseZone = cloudDatabase.zone('default');
let condition = new cloudDatabase.DatabaseQuery(cart_product_list);
condition.equalTo("productId", this.product?.id).and().equalTo("productSpecId", this.specList[this.checkIndex].id)
let listData = await databaseZone.query(condition);
let json = JSON.stringify(listData)
hilog.info(0x0000, 'testTag', `Succeeded in upserting data, result: ${json}`);
let request: CartProductList[] = JSON.parse(json)
let cartPush = new cart_product_list();
if (request.length > 0) {
  let data: CartProductList = request[0]
  cartPush.id = data.id;
  cartPush.productId = data.productId //商品id
  cartPush.productSpecId = data.productSpecId //规格id
  cartPush.productName = data.productName //商品名称
  cartPush.productSpecName = data.productSpecName
  cartPush.productImgAddress = data.productImgAddress
  cartPush.buyAmount = this.addNumber + data.buyAmount //商品数量
  cartPush.isNeedPay = data.isNeedPay //是否选中 默认为true
  cartPush.activityType = data.activityType //活动类型 暂无
  cartPush.productPrice = data.productPrice //价格
  cartPush.productOriginalPrice = data.productOriginalPrice //划线价
  cartPush.couponPrice = data.couponPrice
} else {
  cartPush.id = Math.floor(Math.random() * 1000000);
  cartPush.productId = this.product!.id //商品id
  cartPush.productSpecId = this.specList[this.checkIndex].id //规格id
  cartPush.productName = this.product!.name //商品名称
  cartPush.productSpecName = this.specList[this.checkIndex].name
  cartPush.productImgAddress = this.product!.url //图片地址
  cartPush.buyAmount = this.addNumber //商品数量
  cartPush.isNeedPay = true //是否选中 默认为true
  cartPush.activityType = "1" //活动类型 暂无
  cartPush.productPrice = this.product!.price //价格
  cartPush.productOriginalPrice = this.product!.original_price //划线价
  cartPush.couponPrice = 0
}

let num = await databaseZone.upsert(cartPush);
hilog.info(0x0000, 'testTag', `Succeeded in upserting data, result: ${num}`);
if (num > 0) {
  showToast("修改成功" + num + "条")
}

这样我们就可以有效的区分数据了,我们先看后台的数据

可以看到现在数据是空的,我们执行一下,进行添加

可以看到已经执行了我们添加成功的提示,现在来到后台进行插入数据的查询

可以看到数据已经成功插入

接下来我们实现加购列表,首先进行页面的创建,在生命周期函数里进行数据的查询

import { CartProductList } from ".../entity/CartProductList"
import { cloudDatabase } from "@kit.CloudFoundationKit";
import { cart_product_list } from ".../clouddb/cart_product_list";
import { hilog } from "@kit.PerformanceAnalysisKit";
let databaseZone = cloudDatabase.zone('default');

@Preview
@Component
export struct CartList {

@State productList: CartProductList[] = []
@State flag: boolean = false

async aboutToAppear(): Promise {
  let condition = new cloudDatabase.DatabaseQuery(cart_product_list);
  let listData = await databaseZone.query(condition);
  let json = JSON.stringify(listData)
  this.productList = JSON.parse(json)
  hilog.info(0x0000, 'testTag', `Succeeded in upserting data, result: ${listData}`);

  this.flag = true
}
build() {
  Column() {
    if (this.flag) {
      List() {
        ForEach(this.productList, (item: CartProductList, index: number) => {
          ListItem() {
            Row() {
              Image(item.productImgAddress)
                .height(120)
                .width(120)
              Column() {
                Text(item.productName)
                  .fontColor(Color.Black)
                  .fontSize(16)
                Text(item.productSpecName)
                  .fontColor(Color.Grey)
                  .fontSize(14)

                Text(() => {
                  Span("¥ ")
                    .fontSize(14)
                    .fontColor(Color.Red)
                  Span(item.productPrice + "")
                    .fontSize(22)
                    .fontColor(Color.Red)
                })

                Text("¥" + item.productOriginalPrice + "")
                  .fontColor('#999')
                  .decoration({
                    type: TextDecorationType.LineThrough,
                    color: Color.Gray
                  })
                  .fontSize(16)
                  .margin({ left: 10 })
              }

              Text("已经加购数量" + item.buyAmount)
                .fontColor(Color.Black)
            }
          }
        })
      }
      .height('auto')
      .layoutWeight(1)
    }
  }
}

还可以看到数据已经查询出来了,到这里我们的功能就实现了, 下一节我们将要针对购物车进行详细的教学


更多关于HarmonyOS鸿蒙Next中《仿盒马》app开发技术分享10--加入购物车&购物车列表静态展示(端云一体)的实战教程也可以访问 https://www.itying.com/category-93-b0.html

2 回复

在鸿蒙Next中开发《仿盒马》App的购物车功能,使用端云一体化方案:

  1. 购物车数据模型使用@ohos.data.relationalStore创建本地数据库表,表结构包含商品ID、名称、价格、数量等字段。

  2. 前端UI用ArkUI的List组件展示购物车条目,每个item使用Column+Row布局,左侧Image组件显示商品图片,右侧Text组件展示商品信息。

  3. 云同步通过@ohos.cloud.hmsServer调用AGC云数据库API,实现购物车数据自动同步。使用observable数据绑定确保UI实时更新。

  4. 静态展示阶段,先用@StorageLink装饰器绑定本地模拟数据,完成布局调试后再接入真实云数据。

  5. 购物车操作按钮使用Button组件,暂时绑定空事件处理函数。

更多关于HarmonyOS鸿蒙Next中《仿盒马》app开发技术分享10--加入购物车&购物车列表静态展示(端云一体)的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


这是一个很不错的HarmonyOS Next端云一体化购物车功能实现案例。我来分析几个关键技术点:

  1. 数据库操作方面:
  • 使用了cloudDatabase.zone进行云端数据操作
  • 通过DatabaseQuery实现条件查询(equalTo方法)
  • 使用upsert方法实现存在则更新、不存在则插入的逻辑
  1. 业务逻辑处理:
  • 通过productIdproductSpecId作为联合主键
  • 实现了数量累加而非重复插入的逻辑
  • 使用Hilog进行调试日志输出
  1. UI展示方面:
  • 使用List+ForEach实现动态列表渲染
  • 通过条件渲染(flag)控制加载状态
  • 实现了商品图片、名称、规格、价格等信息的展示
  1. 代码结构:
  • 使用了TypeScript类型定义(CartProductList)
  • 合理分离了数据操作和UI展示
  • 使用了async/await处理异步操作

这个实现很好地展示了HarmonyOS Next的端云一体化开发能力,特别是云端数据库的操作方式。后续可以考虑加入:

  • 购物车项的选择状态管理
  • 数量修改功能
  • 价格计算逻辑
  • 本地数据缓存等优化,
回到顶部