状态综合运用

Pinia

实验题目
仓库设计
实验目的
掌握状态管理|仓库 Pinia 的基本使用
掌握开发者工具 Vue Devtools 的基本使用
进一步熟悉路由的基本使用
实验内容

改写前续产品列表页 Goods.vue 和 产品详情页 Details.vue,使用仓库完成数据的处理

商品仓库 goods.js

. 所有商品 goods

. 单个商品 good

. 获取所有商品 getGoods()

. 根据 id 获取商品 getGoodById()

. 分页获取商品* getGoodsByPage()

. 其它业务*

购物车仓库 cart.js

. 购物车数据 cart

. 获取购物车数据 getCart()

. 添加到购物车 addToCart()

. 从购物车中删除 removeFromCart()

. 清空购物车 clearCart()

. 其它业务*

地图仓库* map.js
订单仓库* order.js
主题切换/换肤* theme.js
汉堡菜单* ham.js
参考效果和参考代码
改造 实操 - 响应式综合运用 - 产品列表页或新建项目
在仓库目录 stores 创建商品仓库 goods.js
import { ref, computed } from "vue";
import { defineStore } from "pinia";

export const useGoodsStore = defineStore("goods", () => {
  const goods = ref([]);
  const good = ref({});
  const getGoods = async () => {
  };
  const getGoodById = async (id) => {
  };

  return { goods, good, getGoods, getGoodById };
});
在仓库目录 stores 创建购物车仓库 cart.js
import { ref } from "vue";
import { defineStore } from "pinia";

export const useCartStore = defineStore("cart", () => {
  const cart = ref([]);

  const addToCart = (product) => {
    // 直接添加到购物车,增加数量字段,默认为1
    // const existingItem = cart.value.find((item) => item.id === product.id);
    // if (existingItem) {
    //   existingItem.quantity++;
    //   console.log("++");
    // } else {
    //   cart.value.push({ ...product, quantity: 1 });
    //   console.log("1");
    // }

    // 从详情页添加到购物车,数据已经进行了预处理,数量默认为1
    const res = cart.value.filter((item) => item.id === product.id)[0];
    if (res) {
      res.quantity += product.quantity;
    } else {
      cart.value.push({ ...product });
    }
  };

  const removeFromCart = (id) => {
    cart.value = cart.value.filter((item) => item.id !== id);
  };

  const getCart = async () => {
    let response = await fetch("../data/cart.json");
    let data = await response.json();
    cart.value = data;
  };

  const clearCart = () => {
    cart.value = [];
  };

  return {
    cart,
    addToCart,
    removeFromCart,
    getCart,
    clearCart,
  };
});
菜单页 MenuView.vue

. 引入并使用购物车仓库,控制购物车的显示与隐藏

商品详情页 Goods.vue

. 引入并使用商品仓库 - 获取所有商品

商品详情页 DetailsView.vue

. 引入并使用商品仓库 - 根据 id 获取商品

. 引入并使用购物车仓库 - 添加到购物车

购物车页 Cart.vue

. 引入并使用购物车仓库 - 获取购物车数据

拓展与思考
商品数量增加的同时,库存减少
实现立即下单和找人代付
使用模态框给出操作提示
使用状态管理改写路由综合运用中的汉堡菜单
使用仓库管理购物车数据的请求和渲染
说明

现场验收、课后提交实验报告