我正在尝试在magento 2中创建自定义扩展程序
在此我只是尝试打印Hello,但是通过覆盖产品媒体部分。
我的布局xml文件名是catalog_product_view.xml
代码:
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="Abc_ProductMagnifier::css/dummy.css"/>
<script src="Abc_ProductMagnifier::js/dummy.js"/>
</head>
<body>
<referenceContainer name="content">
<container name="product.info.media" htmlTag="div" htmlClass="product media" after="product.info.main">
<block class="Abc\ProductMagnifier\Block\Catalog\Product\ProductMagnifier" name="product.info.media.image" template="product/hello.phtml"></block>
</container>
</referenceContainer>
</body>
</page>
现在问题是我在产品描述页面上获取了我的脚本和css但是我没有从hello.phtml获取内容
hello.phtml的代码
<h1>Hello</h1>
我只是被困在这里请帮助我...