在Magento 2中,一些布局句柄XML文件使用
<page.../>
根标签。其他人打开
<layout.../>
根标签。使用以上两个标签之一是否会对布局句柄XML文件引入任何功能差异?还是这个纯净的橱窗装饰?或介于两者之间。
两个例子
<!-- File: vendor/magento/module-weee/view/frontend/layout/default.xml -->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
和
<!-- File: vendor/magento/module-widget/view/adminhtml/layout/adminhtml_widget_loadoptions.xml -->
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/layout_generic.xsd">