如何获取 SAP Commerce Cloud Spartacus UI 购物车 Cart 的加载状态
2021/9/15 23:08:41
本文主要是介绍如何获取 SAP Commerce Cloud Spartacus UI 购物车 Cart 的加载状态,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在 Storefront AppModule 构造函数里注入 ActiveCartService:
private cartService: ActiveCartService,
调用其 API:
const loading$ = this.cartService.getLoading(); loading$.subscribe((data) => console.log('Jerry cart loading? ', data));
打印出的日志:
active-cart.service.d.ts 里,仅仅包含方法的参数定义:
如果要查看其实现代码,还是得去 fesm2015 的 Spartacus-core.js 文件里查看:
getLoading(): Observable<boolean> { return this.cartSelector$.pipe( map((cartEntity) => cartEntity.loading), distinctUntilChanged() ); }
查看 this.cartSelector$ 的实现:
// Stream with active cart entity protected cartSelector$ = this.activeCartId$.pipe( switchMap((cartId) => this.multiCartService.getCartEntity(cartId)) );
cartSelector$ 的赋值逻辑:从 activeCartId$ 里取出 cartId,调用 multiCartService 读取。
MultiCartService 也只是从 store 里通过selector 去读取。
ActiveCartId$ 的赋值逻辑:
// This stream is used for referencing carts in API calls. protected activeCartId$ = this.userIdService.getUserId().pipe( // We want to wait with initialization of cartId until we have userId initialized // We have take(1) to not trigger this stream, when userId changes. take(1), switchMapTo(this.store), select(MultiCartSelectors.getActiveCartId), // We also wait until we initialize cart from localStorage. Before that happens cartId in store === null filter((cartId) => cartId !== activeCartInitialState), map((cartId) => { if (cartId === '') { // We fallback to current when we don't have particular cart id -> cartId === '', because that's how you reference latest user cart. return OCC_CART_ID_CURRENT; } return cartId; }) );
在这个文件处加上一行打印语句:
果然看到这条语句了:
为什么初始的 loading 标志位为 true?
通过调试代码得知:
这个 LoadCart 继承了 EntityLoadAction,所以也继承了默认的 load:true 标志位。
那么什么时候又变成 false 呢?
调用栈看完了都没看到有 Spartacus 相关的代码:
只知道肯定发生在 Load Cart Success 之后。
从 map.js 里看到了线索:这个 value 里包含了购物车 cart 的业务数据:
以及 loading:false
这是我们的应用代码:
从 Cart selector 里取出 CartEntity,调用 map,将 loading 字段映射出来:
Cart 数据结构:
从这里也能说明,一定是 Load Cart Success 触发的第二次 loading 打印:
此时 cart 数据已经回来了,loading 为 false:
更多Jerry的原创文章,尽在:"汪子熙":
这篇关于如何获取 SAP Commerce Cloud Spartacus UI 购物车 Cart 的加载状态的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器