subtotal을 업데이트하려면 minicart.phtml 파일에서 아래 줄을 유지해야합니다.
아래 줄은 캐시가 제대로 작동하는 경우 모든 경우에 적용됩니다.
<span data-bind="html: getCartParam('subtotal')"></span>
총액, 배송비,
minicart.phtml 파일의 아래 코드를 사용하여 현재 견적에 대한 GrandTotal, 소계 및 배송 요금을 얻을 수 있지만, 당시 캐시를 사용할 수있는 경우 아래 방법을 사용하여 새 제품을 추가 할 때 가격이 업데이트되지 않습니다.
<?php
$quote = $block->getTotalsCache();
$getSubTotal = $quote['subtotal']->getData('value');
$getGrandTotal = $quote['grand_total']->getData('value');
$getShippingRate = $quote['shipping']->getData('value');
$finalSubTotal = $this->helper('Magento\Framework\Pricing\Helper\Data')->currency(number_format($getSubTotal,2),true,false);
$finalShippingTotal = $this->helper('Magento\Framework\Pricing\Helper\Data')->currency(number_format($getShippingRate,2),true,false);
$finalGrandTotal = $this->helper('Magento\Framework\Pricing\Helper\Data')->currency(number_format($getGrandTotal,2),true,false);
?>