O ile mi wiadomo, minicart nagłówka pobierze dane z danych klientów
vendor / magento / module-checkout / view / frontend / web / js / view / minicart.js
define([
'uiComponent',
'Magento_Customer/js/customer-data',
'jquery',
'ko',
'sidebar'
], function (Component, customerData, $, ko) {
'use strict';
......
this.cart = customerData.get('cart');
......
}
Spójrz na dane klienta js vendor/magento/module-customer/view/frontend/web/js/customer-data.js
, możemy uzyskać dane klienta z lokalnego magazynu. Na przykład w konsoli przeglądarki uruchom wiersz: localStorage.getItem('mage-cache-storage')
możemy również uzyskać informacje o koszyku.
{
"cart": {
"summary_count": 1,
....
"items": [
{
......
"qty": 1,
"item_id": "11728",
"configure_url": "http://magento2-demo/checkout/cart/configure/id/11728/product_id/1817/",
"is_visible_in_site_visibility": true,
"product_name": "Breathe-Easy Tank",
"product_url": "http://magento2-demo/breathe-easy-tank.html",
"product_has_url": true,
"canApplyMsrp": false
}
],
.......
}
}
Przejdź do
dostawcy / magento / module-checkout / CustomerData / DefaultItem.php
protected function doGetItemData()
{
.......
return [
'options' => $this->getOptionList(),
'qty' => $this->item->getQty() * 1,
'item_id' => $this->item->getId(),
'configure_url' => $this->getConfigureUrl(),
'is_visible_in_site_visibility' => $this->item->getProduct()->isVisibleInSiteVisibility(),
'product_name' => $this->item->getProduct()->getName(),
'product_url' => $this->getProductUrl(),
'product_has_url' => $this->hasProductUrl(),
.....
}
vendor / magento / module-checkout / CustomerData / AbstractItem.php
/**
* {@inheritdoc}
*/
public function getItemData(Item $item)
{
$this->item = $item;
return \array_merge(
['product_type' => $item->getProductType()],
$this->doGetItemData()
);
}
Aby uzyskać element SKU, myślę, że musimy dodać dane do getItemData()
(należy spróbować z wtyczką ). A następnie zastąp szablon HTML vendor/magento/module-checkout/view/frontend/web/template/minicart/item/default.html
<div class="product-item-details">
<!-- ko text: product_sku --><!-- /ko -->
Zaktualizuj wersję Magento 2.1.0
W Magento 2.1.0 wystarczy tylko przesłonić default.html
. Wynika to z tego, że metoda doGetItemData
ma już SKU produktu.