我们需要删除“更新购物车”按钮以更新小计值,并想使用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个小数)?
答案 0 :(得分:0)
使用
{% import "@SyliusShop/Common/Macro/money.html.twig" as money %}
{{ money.format(item.unitPrice, cart.currencyCode) }}
而不是{{item.unitPrice}}