Configurazione del sistema Magento 2 per il problema del modulo


11

Ho visitato molti siti per trovare una soluzione a questo problema.

Ma dopo aver creato system.xmle acl.xmlMagento mi danno un report generato errore.

Errore

a: 4: {i: 0; s: 140: "Avviso: indice indefinito: id in / usr / local / ampps / www / mgn2 / vendor / magento / module-config / Model / Config / Structure / Element / Iterator. 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, 'Undefined index ...', '/ usr / local / ampp ...', 59, Array)

Puoi chiarire questo problema?

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>

Risposte:


22

Nel tuo system.xmlsostituire questo

<tab>HelloWorldMVVM</tab>

con questo

<tab>Pulsestorm</tab>

@Marius: puoi condividere un po 'di contesto? Ottengo lo stesso errore ma sono perplesso su cosa inserire nel mio caso.
Hakre,

2
stai facendo riferimento a una scheda che non esiste. Ogni <tab>tag ha un ID e in questo modo è possibile aggiungere sezioni in determinate schede. Ma se aggiungi una sezione in una scheda che non esiste ottieni l'errore sopra.
Marius

@Marius: Sì, l'ho trovato anche io. Molte grazie. Passiamo al prossimo mistero ... :)
Hakre,

@Marius: anche io ho affrontato lo stesso tipo di problema. Risolto grazie alla tua risposta, grazie;)
Srihari,

Carri armati. ho affrontato un problema e ora ho la soluzione
Amit Bera
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.