Magento 2比较产品部分数据未显示

时间:2018-03-20 05:28:28

标签: user-interface magento2

我已经以编程方式添加了比较产品,并且它们在比较操作中显示如下:

  

http://example.com/catalog/product_compare/index/

但是标题比较项目部分没有显示。以下是图片。 https://prnt.sc/itlyaf

customerData.get('compare-products')

有关

即使我清除了所有缓存,如何更新此标题部分?

1 个答案:

答案 0 :(得分:1)

您可以使用"Magento_Customer/js/customer-data"更新特定数据部分。

对于'比较产品'你可以在代码下面使用的部分。

<script type="text/javascript">
    require([
    'jquery',
    'Magento_Customer/js/customer-data'   
], function ($, customerData) {
    'use strict';
    customerData.reload('compare-products');
});
</script>