Magento 2 System Configuration สำหรับปัญหา Module


11

ฉันไปที่ไซต์หลายแห่งเพื่อค้นหาวิธีแก้ปัญหาของปัญหานี้

แต่หลังจากการสร้างsystem.xmlและacl.xmlวีโอไอพีให้ฉันรายงานข้อผิดพลาดที่สร้างขึ้น

ความผิดพลาด

a: 4: {i: 0; s: 140: "ประกาศ: ดัชนีที่ไม่ได้กำหนด: id ใน / usr / local / ampps / www / mgn2 / ผู้ขาย / magento / module-config / รุ่น / Config / โครงสร้าง / องค์ประกอบ / Iterator php บนบรรทัด 59 "; i: 1; s: 6391:" # 0 /usr/local/ampps/www/mgn2/vendor/magento/module-config/Model/Config/Struct/Eter/Iterator.php(59) : Magento \ Framework \ App \ ErrorHandler-> ตัวจัดการ (8, 'ดัชนีที่ไม่ได้กำหนด ... ', '/ usr / local / ampp ... ', 59, Array)

คุณสามารถอธิบายปัญหานี้ได้หรือไม่?

app / รหัส / 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 / รหัส / 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>

@Marius: คุณสามารถแบ่งปันบริบทเล็กน้อยได้หรือไม่ ฉันได้รับข้อผิดพลาดเดียวกัน แต่ฉันสงสัยว่าจะป้อนอะไรในกรณีของฉัน
hakre

2
คุณกำลังอ้างอิงแท็บที่ไม่มีอยู่ แต่ละ<tab>แท็กมีรหัสและวิธีนี้คุณสามารถเพิ่มส่วนต่างๆภายใต้แท็บบางแท็บ แต่ถ้าคุณเพิ่มส่วนใต้แท็บที่ไม่มีอยู่คุณจะได้รับข้อผิดพลาดด้านบน
Marius

@Marius: ใช่เพิ่งพบตัวเองเช่นกัน ขอบคุณมาก. มาถึงปริศนาถัดไป ... :)
hakre

@Marius: ฉันประสบปัญหาประเภทเดียวกันด้วย แก้ไขโดยคำตอบของคุณขอบคุณมาก;)
Srihari

ถัง ฉันมีปัญหากับมันและตอนนี้ได้รับการแก้ปัญหา
Amit Bera
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.