如何在不使用“Úpdatecart”的情况下更新数量时更新小计价格

时间:2018-06-21 11:07:52

标签: symfony sylius

我们需要删除“更新购物车”按钮以更新小计值,并想使用jQuery计算小计金额。

<input type="hidden" class="item-unit-price" value="{{item.unitPrice}}"/>

在点击+/-或手动更新数量时,使用jQuery方法计算小计

function update_price(object){ current_quantity = $(object).parents('.quantity-input').find('input[type=number]').val(); item_price = $(object).parents('.quantity-input').find('.item-sub-total').val(); console.log(current_quantity); console.log(item_price); $(object).parents('.quantity-input').next('.cart-item-quantity').html("<span><b>"+ (current_quantity*item_price) +"</b></span>"); }

但是如何在树枝中找到当前通道的货币符号($)/小数点(2个小数)?

1 个答案:

答案 0 :(得分:0)

使用 {% import "@SyliusShop/Common/Macro/money.html.twig" as money %} {{ money.format(item.unitPrice, cart.currencyCode) }} 而不是{{item.unitPrice}}