4
Magento 2 xml doğrulama
Bir süredir Magento 2, bir XSD dosyası kullanarak herhangi bir xml'yi doğrulama (ve otomatik tamamlama) yöntemine sahipti. Örneğin şuna module.xmlbenziyordu: <?xml version="1.0"> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd"> .... </config> ama şimdi module.xmlşuna benziyor: <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> .... </config> bu yüzden xsi:noNamespaceSchemaLocationözellik içeriyor urn:magento:framework:. Bunun xmls'nin sunucu tarafı doğrulaması ile ilgisi …