Shopify getJSON('/ cart.js')液体的自定义值

时间:2020-01-15 23:57:00

标签: javascript json shopify cart

一天中的好时光。 试图改进弹出式购物车的原因在于使用自定义值而不是现有值的可能性。 此示例按预期工作:

$.getJSON('/cart.js').then(
    function(cart) {
$('#example').html(theme.Currency.formatMoney(cart.total_price, theme.moneyFormat));
    });

在购物车模板中,我用液体代码设置了其他值。这是一个示例:

           {% for item in cart.items %}
           {% assign totalfive = 0 %}
           {% assign fiveminus = cart.total_price | times: 0.05 %}
           {% assign totalfive = cart.total_price | minus: fiveminus %}
           {% endfor %}

在HTML中,该值如下所示:<span>{{ totalfive | money }}</span> 问题是关于如何通过JSON获取此值?也许有一种方法可以使用基于ID的元素来捕获它?还是绝对不可能?

0 个答案:

没有答案