2017-03-23 76 views

回答

1

使用xsd:union創建新型的由工會的其他xs:integerxs:date

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
    <xs:element name="score"> 
    <xs:simpleType> 
     <xs:union memberTypes="xs:integer xs:date"/> 
    </xs:simpleType> 
    </xs:element> 
</xs:schema>