gpt4 book ai didi

xml - XML中的递归元素

转载 作者:行者123 更新时间:2023-12-04 18:11:22 72 4
gpt4 key购买 nike

我正在尝试设计和实现 递归元素 在 XML 模式中,但我一般不太擅长 XML。关于如何设计它的任何想法?

最佳答案

下面的模型基于一种创作风格,其中元素声明是全局的,并且通过引用元素定义来实现递归。

<?xml version="1.0" encoding="utf-8" ?>
<!--XML Schema generated by QTAssistant/XML Schema Refactoring (XSR) Module (http://www.paschidev.com)-->
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="recursive">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="recursive" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>

或者,您可以通过重新使用类型来实现相同的目的:
<?xml version="1.0" encoding="utf-8" ?>
<!--XML Schema generated by QTAssistant/XML Schema Refactoring (XSR) Module (http://www.paschidev.com)-->
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="recursive" type="Trecursive"/>
<xsd:complexType name="Trecursive">
<xsd:sequence>
<xsd:element name="recursive" type="Trecursive" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>

或者您可以介于两者之间:
<?xml version="1.0" encoding="utf-8" ?>
<!--XML Schema generated by QTAssistant/XML Schema Refactoring (XSR) Module (http://www.paschidev.com)-->
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="recursive" type="Trecursive"/>
<xsd:complexType name="Trecursive">
<xsd:sequence>
<xsd:element ref="recursive" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>

有效的示例 XML:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<recursive xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/XMLSchema.xsd">
<recursive>
<recursive/>
</recursive>
</recursive>

关于xml - XML中的递归元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12597683/

72 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com