Ở đây tôi đưa ra ví dụ để hiển thị khối tùy chỉnh ở trên phương thức thanh toán
1) Tạo di.xml tại
ứng dụng / mã / Nhà cung cấp / Mô-đun / etc / frontend / di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Checkout\Model\CompositeConfigProvider">
<arguments>
<argument name="configProviders" xsi:type="array">
<item name="cms_block_config_provider" xsi:type="object">Vendor\Module\Model\ConfigProvider</item>
</argument>
</arguments>
</type>
</config>
2) Tạo ConfigProvider.php để xác định khối tĩnh của bạn với windows.checkoutConfig
ứng dụng / mã / Nhà cung cấp / Mô-đun / Mô hình / ConfigProvider.php
<?php
namespace Vendor\Module\Model;
use Magento\Checkout\Model\ConfigProviderInterface;
use Magento\Framework\View\LayoutInterface;
class ConfigProvider implements ConfigProviderInterface
{
/** @var LayoutInterface */
protected $_layout;
public function __construct(LayoutInterface $layout)
{
$this->_layout = $layout;
}
public function getConfig()
{
$myBlockId = "my_static_block"; // CMS Block Identifier
//$myBlockId = 20; // CMS Block ID
return [
'my_block_content' => $this->_layout->createBlock('Magento\Cms\Block\Block')->setBlockId($myBlockId)->toHtml()
];
}
}
3) Ghi đè checkout_index_index.xml trong mô-đun của bạn và xác định thành phần vận chuyển của riêng bạn
ứng dụng / mã / Nhà cung cấp / Mô-đun / chế độ xem / frontend / layout / checkout_index_index.xml
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="checkout.root">
<arguments>
<argument name="jsLayout" xsi:type="array">
<item name="components" xsi:type="array">
<item name="checkout" xsi:type="array">
<item name="children" xsi:type="array">
<item name="steps" xsi:type="array">
<item name="children" xsi:type="array">
<item name="shipping-step" xsi:type="array">
<item name="children" xsi:type="array">
<item name="shippingAddress" xsi:type="array">
<item name="component" xsi:type="string">Vendor_Module/js/view/shipping</item>
</item>
</item>
</item>
</item>
</item>
</item>
</item>
</item>
</argument>
</arguments>
</referenceBlock>
</body>
</page>
4) Bây giờ tạo Shipping.js và xác định tệp mẫu vận chuyển của riêng bạn
ứng dụng / mã / Nhà cung cấp / Mô-đun / chế độ xem / frontend / web / js / view / Shipping.js
define(
[
'jquery',
'ko',
'Magento_Checkout/js/view/shipping'
],
function(
$,
ko,
Component
) {
'use strict';
return Component.extend({
defaults: {
template: 'Vendor_Module/shipping'
},
initialize: function () {
var self = this;
this._super();
}
});
}
);
5) Sao chép vận chuyển.html từ
nhà cung cấp / magento / mô-đun kiểm tra / xem / frontend / web / template / Shipping.html
Để mô-đun của bạn
ứng dụng / mã / Nhà cung cấp / Mô-đun / lượt xem / frontend / web / template / Shipping.html
Bây giờ hãy thêm window.checkoutConfig.my_block_content vào Shipping.html nơi bạn muốn hiển thị khối tĩnh của mình
<div data-bind="html: window.checkoutConfig.my_block_content"></div>
Ở đây tôi thêm tiện ích sản phẩm mới trong khối tĩnh của mình
ĐẦU RA: