当前位置: 技术文章>> 如何在Magento 2的小计之前在购物车摘要中添加自定义块?

文章标题:如何在Magento 2的小计之前在购物车摘要中添加自定义块?
  • 文章分类: Magento
  • 25364 阅读
系统学习magento二次开发,推荐小册:《Magento中文全栈二次开发 》

本小册面向Magento2以上版本,书代码及示例兼容magento2.0-2.4版本。涵盖了magento前端开发,后端开发,magento2主题,magento2重写,magento2 layout,magento2控制器,magento2 block等相关内容,带领您成为magento开发技术专家。


让我们从编码开始

第 1 步:首先,我们需要在扩展名中创建一个“Registration.php”文件,路径如下:

app\code\Vendor\Extension

<?php
\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Vendor_Extension',
    __DIR__
);

第 2 步:之后,我们需要在扩展名等文件夹中创建一个“module.xml”文件。

app\code\Vendor\Extension\etc

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Vendor_Extension" setup_version="1.0.0" schema_version="1.0.0"/>
</config>

第 3 步:之后,我们需要在 path 文件夹中创建一个“checkout_cart_index.xml”文件以将文件添加到模块中。

app\code\Vendor\Extension\view\frontend\layout

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceContainer name="checkout.cart.totals.container">
            <block class="Magento\Framework\View\Element\Template" name="checkout.cart.custom.block" before="checkout.cart.totals" template="Vendor_Extension::custom-block.phtml" />
        </referenceContainer>
    </body>
</page>

第 4 步:最后,在模块的以下路径文件夹中创建“custom-block.phtml”文件。

app\code\Vendor\Extension\view\frontend\templates

<?php echo "Custom Block"; ?>

结语

所以,这就是当天的全部内容!借助这些代码,您可以成功完成在Magento 2中的小计之前在购物车摘要中添加自定义块的任务。


推荐文章