对于xml架构,我是新手。无论如何,这是我的问题:
我有以下元素
<property name="propA">some-value</property>
我希望我的XSD能够阻止空元素,例如:
<property name="propB" />
<property name="propC"></property>
如何使用当前的XSD实现此目的,如下所示:
<xs:complexType name="property">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:string" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
答案 0 :(得分:1)
您可以为此构建自己的simpleType。例如:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="property" type="property"/>
<xs:complexType name="property">
<xs:simpleContent>
<xs:extension base="nonEmptyString">
<xs:attribute name="name" type="xs:string" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="nonEmptyString">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>