Magento 2系统配置问题


11

我访问了许多站点以查找此问题的解决方案。

但是创建后system.xmlacl.xmlMagento给我报告生成错误。

错误

a:4:{i:0; s:140:“注意:未定义的索引:/ usr / local / ampps / www / mgn2 / vendor / magento / module-config / Model / Config / Structure / Element / Iterator中的ID。第59行中的php“; i:1; s:6391:”#0 /usr/local/ampps/www/mgn2/vendor/magento/module-config/Model/Config/Structure/Element/Iterator.php(59) :Magento \ Framework \ App \ ErrorHandler-> handler(8,'未定义的索引...','/ usr / local / ampp ...',59,数组)

您能澄清这个问题吗?

app / code / Pulsestorm / HelloWorldMVVM / etc / adminhtml / system.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">
    <system>
        <tab id="Pulsestorm" translate="label" sortOrder="200">
            <label>Pulsestorm</label>
        </tab>
        <section id="config_helloworld" translate="label" type="text" sortOrder="110" showInDefault="1" showInWebsite="1" showInStore="1">
            <label>Pulsestorm</label>
            <tab>HelloWorldMVVM</tab>
            <resource>Pulsestorm_HelloWorldMVVM::config_helloworldmvvm</resource>
            <group id="general" translate="label" type="text" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">
                <label>General</label>
                <field id="enable" translate="label comment" type="select" sortOrder="10" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Enable Hello World</label>
                    <source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
                </field>
                <field id="block_label" translate="label" type="text" sortOrder="20" showInDefault="1" showInWebsite="1" showInStore="1">
                    <label>Module page title</label>
                </field>
            </group>
        </section>
    </system>
</config>

应用程序/代码/PulseStorm/HelloWorldMVVM/etc/acl.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
    <acl>
        <resources>
            <resource id="Magento_Backend::admin">
                <resource id="Magento_Backend::stores">
                    <resource id="Magento_Backend::stores_settings">
                        <resource id="Magento_Config::config">
                            <resource id="Pulsestorm_HelloWorldMVVM::config_helloworldmvvm" title="HelloWorldMVVM" />
                        </resource>
                    </resource>
                </resource>
            </resource>
        </resources>
    </acl>
</config>

Answers:


22

在你system.xml替换这个

<tab>HelloWorldMVVM</tab>

有了这个

<tab>Pulsestorm</tab>

@马里乌斯:你能分享一些背景吗?我收到相同的错误,但我不知道要输入什么内容。
hakre

2
您引用的标签不存在。每个<tab>标签都有一个ID,这样您就可以在某些标签下添加部分。但是,如果在不存在的选项卡下添加部分,则会收到上面的错误。
马吕斯

@Marius:是的,我自己也找到了。非常感谢。现在进入下一个谜题……:)
hakre

@马里乌斯:我也遇到过同样的问题。由您的回答解决了,非常感谢;)
斯里哈里'16

战车 我遇到了一个问题,现在找到了解决方案
阿米特·贝拉
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.