XSD 1.1替代测试文本内容()

时间:2015-04-17 21:15:21

标签: xml xsd-1.1

以下是我想做的事情:

<xs:element name="width">
  <!-- If the value is auto, then it can have min/max attribs -->
  <xs:alternative test="text() eq auto" type="heightWidthAutoType" />
  <!-- Otherwise it is treated as a normal positionType -->
  <xs:alternative type="positionType" />
</xs:element>    

这应该适用于第一种选择(但不是):

<width min='100' max='100'>auto</width>

这是默认值:

<width>100</width>

无论我为标签的内容添加什么,它总是选择默认值。我假设text()在替代方案中没有效果,但我似乎无法找到说明这一点的文档。

W3 Reference

1 个答案:

答案 0 :(得分:2)

所以我回去实际阅读细节(而不是略读)......

1 An instance of the [XDM] data model is constructed as follows:
1.1 An information set is constructed by copying the base information set
    properties (and not any of the properties specific to ·post-schema-
    validation infoset·) of the following information items:
1.1.1 E itself.
1.1.2 E's [attributes] (but not its [children]).

所以它似乎不允许你测试它的文本节点(或任何其他孩子)。

<强>解决方案

以下是我最终解决问题的方法:

<xs:element name="width" type="heightWidthType" />
<xs:element name="height" type="heightWidthType" />

<xs:complexType name="heightWidthType">
    <xs:simpleContent>
        <xs:extension base="positionType">
            <!-- These are actually only valid if the value of the element is auto -->
            <xs:attribute name="min" type="xs:unsignedInt" />
            <xs:attribute name="max" type="xs:unsignedInt" />
            <xs:assert test="not((@min or @max)) or ((@min or @max) and $value eq 'auto')" />
        </xs:extension>
    </xs:simpleContent>
</xs:complexType>

<xs:simpleType name="positionType">
    <xs:restriction base="xs:string">
        <!--  If an "r" is included (eg 180r) then the measurement is taken from the parent's right edge (in the left direction). -->
        <xs:pattern value="-?\d+(\.\d+)?(r|%)?" />
        <xs:pattern value="auto" />
    </xs:restriction>
</xs:simpleType>