如何在 Spartacus 中自定义较低级别的组件?
How to customize lower level components in Spartacus?
我正在尝试自定义 ProductListItemComponent
和 ProductGridItemComponent
以添加更多功能,例如 股票计数器。
经过快速研究后,我得出的结论是无法使用 cmsComponents
对象重新映射它们,只能重新映射实际的 CMS 组件 CMSProductListComponent
。
如果我的假设是正确的,那么自定义这些组件的最佳方法是什么?
感谢您的宝贵时间!
是的!
你说得对!您不能像 CMS 组件一样通过重新映射来自定义 ProductListItemComponent
或 ProductGridItemComponent
,您应该通过更高级别的 CMS 组件 - ProductListComponent
.
对其进行自定义
在这里您可以找到 GitHub 个问题:https://github.com/SAP/spartacus/issues/4231 and https://github.com/SAP/spartacus/issues/4441,这与上述问题有关。
我正在尝试自定义 ProductListItemComponent
和 ProductGridItemComponent
以添加更多功能,例如 股票计数器。
经过快速研究后,我得出的结论是无法使用 cmsComponents
对象重新映射它们,只能重新映射实际的 CMS 组件 CMSProductListComponent
。
如果我的假设是正确的,那么自定义这些组件的最佳方法是什么?
感谢您的宝贵时间!
是的!
你说得对!您不能像 CMS 组件一样通过重新映射来自定义 ProductListItemComponent
或 ProductGridItemComponent
,您应该通过更高级别的 CMS 组件 - ProductListComponent
.
在这里您可以找到 GitHub 个问题:https://github.com/SAP/spartacus/issues/4231 and https://github.com/SAP/spartacus/issues/4441,这与上述问题有关。