モジュール問題の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。 php on line 59 "; 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>

app / code / 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>

回答:


22

あなたのsystem.xml代わりにこれ

<tab>HelloWorldMVVM</tab>

これとともに

<tab>Pulsestorm</tab>

@マリウス:少しコンテキストを共有できますか?同じエラーが発生しますが、私の場合は何を入力すればよいか困惑します。
hakre

2
存在しないタブを参照しています。各<tab>タグにはIDがあり、この方法で特定のタブの下にセクションを追加できます。しかし、存在しないタブの下にセクションを追加すると、上記のエラーが発生します。
マリウス

@マリウス:はい、自分でも見つけました。どうもありがとう。今度は次の謎へ... :)
hakre

@マリウス:私も同じような問題に直面しました。あなたの答えによって修正されましたありがとう;)
Srihari

戦車。問題が発生し、解決策が得られました
Amit Bera
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.