如何更改 Magento 2 中的Block参数
在这篇文章中,我将指导您如何更改 Magento 2 中的Block参数。
如何更改块参数
首先,您需要修改要更改的目标块参数。
对于要修改的块参数,<referenceBlock>
使用该指令。
下面是如何更改现有块参数值并添加新参数的示例。
- 初始块声明:
<block class="Namespace_Module_Block_Type" name="block.example">
<arguments>
<argument name="label" xsi:type="string">Block Label</argument>
</arguments>
</block>
- 扩展布局:
<referenceBlock name="block.example">
<arguments>
<!-- Modified block argument -->
<argument name="label" xsi:type="string">New Block Label</argument>
<!- Newly added block argument -->
<argument name="custom_label" xsi:type="string">Custom Block Label</argument>
</arguments>
</referenceBlock>
版权声明:本站内容源自互联网,如有内容侵犯了你的权益,请联系删除相关内容。