Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 XML 文件中有一个元素,它的值可以是小数或日期。在用于验证的 XML 模式中,我将其指定为:
<xs:element name = "data" type="xs:decimal"/>
或者我可以将其指定为type="xs:date".
type="xs:date"
这仅将其验证为日期或小数。是否有其他数据类型或其他数据类型可以让我验证此元素,无论它是否具有日期或十进制值?
<xs:element name="data"> <xs:simpleType> <xs:union memberTypes="xs:date xs:decimal" /> </xs:simpleType> </xs:element>