1

我可以在 xsd 中描述某些特定类型的元素必须出现,但它们可以有任何名称。Visual Studio 不允许我省略“名称”属性,如下所示:

<xs:element type="myType"/>

有没有办法做到这一点?如果不是,是否可以在其他 XML 模式语言中使用,例如 RELAX NG?谢谢

4

1 回答 1

2

XSD 1.0 中的一种方法是使用替换组。

BaseAny.xsd

<?xml version="1.0" encoding="utf-8" ?>
<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="anyOfCType" type="myCType" abstract="true"/>
    <xsd:complexType name="myCType">
        <xsd:sequence>
            <xsd:element name="something" type="xsd:string"/>
        </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="anyOfSType" type="mySType" abstract="true"/> 
    <xsd:simpleType name="mySType">
        <xsd:restriction base="xsd:string">
            <xsd:minLength value="2"/>
        </xsd:restriction>
    </xsd:simpleType>
    <xsd:element name="root">
        <xsd:complexType>
            <xsd:sequence>
                <xsd:element ref="anyOfCType"/>
                <xsd:element ref="anyOfSType"/>
            </xsd:sequence>
        </xsd:complexType>
    </xsd:element>
</xsd:schema>

RefBaseAny.xsd:

<?xml version="1.0" encoding="utf-8" ?>
<xsd:schema targetNamespace="http://tempuri.org/1/XMLSchema.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/1/XMLSchema.xsd" xmlns:b="http://tempuri.org/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:import namespace="http://tempuri.org/XMLSchema.xsd" schemaLocation="BaseAny.xsd"/>

    <xsd:element name="c.one" type="b:myCType" substitutionGroup="b:anyOfCType"/>
    <xsd:element name="s.one" type="b:mySType" substitutionGroup="b:anyOfSType"/>

</xsd:schema>

针对 RefBaseAny.xsd 验证的示例 XML:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:r="http://tempuri.org/1/XMLSchema.xsd">
    <r:c.one>
        <something></something>
    </r:c.one>
    <r:s.one>12</r:s.one>
</root>

使用 Relax NG,您必须定义一个命名模式来定义您的内容模型(模仿 xsd:complexType)。

<define name="myType">
  ...
</define>

然后定义一个具有这种结构的元素:

<element>
  <anyName/>
  <ref name="myType"/>
</element>

测试.rng:

<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
    <start>
        <element>
            <anyName/>
            <ref name="myType"/>
        </element>
    </start>
    <define name="myType">
        <element name="c.one">
            <interleave>
                <attribute name="id">
                    <value>AA</value>
                </attribute>
                <attribute name="ref">
                    <text/>
                </attribute>
            </interleave>
            <element name="s.two">
                <text/>
            </element>
        </element>
    </define>
</grammar>

有效的 XML1:

<?xml version="1.0" encoding="UTF-8"?>
<Data>
    <c.one id="AA" ref="123">
        <s.two>Hello</s.two>
    </c.one>
</Data>

有效的 XML2:

<?xml version="1.0" encoding="UTF-8"?>
<Data1>
    <c.one id="AA" ref="123">
        <s.two>Hello</s.two>
    </c.one>
</Data1>
于 2012-04-14T23:26:47.390 回答