Theo tôi biết, minicart tiêu đề sẽ lấy dữ liệu từ dữ liệu khách hàng
nhà cung cấp / magento / kiểm tra mô-đun / xem / 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');
......
}
Nhìn vào dữ liệu khách hàng js vendor/magento/module-customer/view/frontend/web/js/customer-data.js
, chúng tôi có thể lấy dữ liệu khách hàng từ bộ nhớ cục bộ. Ví dụ: trong bảng điều khiển trình duyệt của bạn, hãy chạy dòng : localStorage.getItem('mage-cache-storage')
, chúng tôi cũng có thể lấy thông tin giỏ hàng.
{
"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
}
],
.......
}
}
Điều hướng đến
nhà cung cấp / magento / kiểm tra mô-đun / 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(),
.....
}
nhà cung cấp / magento / kiểm tra mô-đun / CustomerData / AbstractItem.php
/**
* {@inheritdoc}
*/
public function getItemData(Item $item)
{
$this->item = $item;
return \array_merge(
['product_type' => $item->getProductType()],
$this->doGetItemData()
);
}
Để có được mục SKU, tôi nghĩ rằng chúng ta cần thêm dữ liệu vào getItemData()
(Nên thử với Plugin ). Và sau đó ghi đè lên mẫu html vendor/magento/module-checkout/view/frontend/web/template/minicart/item/default.html
<div class="product-item-details">
<!-- ko text: product_sku --><!-- /ko -->
Cập nhật phiên bản Magento 2.1.0
Trong Magento 2.1.0, bạn chỉ cần ghi đè default.html
. Điều này là do phương pháp doGetItemData
đã có sản phẩm sku.