验证属性中的空字符串

时间:2013-04-30 08:04:12

标签: xml xsd

我正在编写一个XSD架构来验证一个文档,该文档存储了许多result个元素。此元素的两个属性clickIndextimeViewed是可选的,并使用内置数据类型nonNegativeIntegerdecimal。我们不想在未设置值时删除这些属性,而是将它们设置为空字符串,如下所示:

<Page resultCount="10" visited="true">
    <Result index="1" clickIndex="1" timeViewed="45.21" pid="56118" title="alpha"/>
    <Result index="2" clickIndex="" timeViewed="" pid="75841" title="beta"/>
    <Result index="3" clickIndex="2" timeViewed="21.45" pid="4563" title="gamma"/>
    <Result index="4" clickIndex="" timeViewed="" pid="44546" title="delta"/>
    <Result index="5" clickIndex="" timeViewed="" pid="1651" title="epsilo"/>
    <Result index="6" clickIndex="" timeViewed="" pid="551651" title="zeta"/>
    <Result index="7" clickIndex="" timeViewed="" pid="20358" title="eta"/>
    <Result index="8" clickIndex="" timeViewed="" pid="61621" title="theta"/>
    <Result index="9" clickIndex="" timeViewed="" pid="135154" title="iota"/>
    <Result index="10" clickIndex="" timeViewed="" pid="95821" title="kappa"/>
</Page>

不幸的是,这不会对以下xsd进行验证:

<xs:element name="Result">
    <xs:complexType>
        <xs:attribute name="index" type="xs:nonNegativeInteger" use="required"/>
        <xs:attribute name="clickIndex" type="xs:nonNegativeInteger" use="optional"/>
        <xs:attribute name="timeViewed" type="xs:decimal" use="optional"/>
        <xs:attribute name="pid" type="xs:positiveInteger" use="required"/>
        <xs:attribute name="title" type="xs:string" use="required"/>
    </xs:complexType>
</xs:element>

是否无法验证具有已定义类型的属性上的空字符串?有没有办法在不定义自定义类型的情况下执行此操作?我只是忘记了XSD中的一个选项吗?

我将处理这些XML文件以生成统计信息,其中缺少的属性可能会引入不必要的复杂性。如果没有解决方法,我只需用零替换空值。我宁愿保留空字符串,因为它看起来更干净,但也许零也会更有效。

1 个答案:

答案 0 :(得分:2)

如果有问题的属性是整数类型,则无法分配空字符串。引号内的值应该可解析为整数。您必须像您所说的那样使用零值更新xml,或者删除包含空字符串值的属性。如果您不喜欢这些解决方案中的任何一个,那么您必须定义自己的自定义类型。您可以参考此处了解更多详情

XSD make attribute nullable