浏览文章

文章信息

Exception #0 (Magento\Framework\Config\Dom\ValidationException): Element 'move': This element is not expected. 15184

1、报错:

1 exception(s):
Exception #0 (Magento\Framework\Config\Dom\ValidationException): Element 'move': This element is not expected.
Line: 772


2、原因:

元素使用场景错误

move元素只能在body层内使用,不可嵌入任何其他元素之内,使用时指定属性destination即可移动到相应的容器中。

如果目的容器中存在多个兄弟元素,请在元素move中添加属性after或者before,来在众多destination子元素中安家。


3、更正:

例如xml中有以下将报此错误:

<body>

        <referenceContainer name="header-wrapper">

            <move element="top.links" destination="header-wrapper" before="-"/>

        </referenceContainer>

</body>

更正为:

<body>

        <!--将top.links移动到header-wrapper容器内-->

         <move element="top.links" destination="header-wrapper" before="-"/>

</body>


4、总结:

(1)、move元素一定在body层中使用。

(2)、move属性用来控制移动动作。


原创