0
我在XSD使用此SimpleType多次:我可以使用simpleType多次嗎?
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9a-zA-Z]{3}" />
</xs:restriction>
</xs:simpleType>
有沒有辦法定義一次,然後多次使用它?
我在XSD使用此SimpleType多次:我可以使用simpleType多次嗎?
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9a-zA-Z]{3}" />
</xs:restriction>
</xs:simpleType>
有沒有辦法定義一次,然後多次使用它?
是的。只要給它一個名字。
<xsd:simpleType name="myType">
...
</xsd:simpleType>
<xsd:element type="myType" .../>