在下面這個例子中,XML模式:選擇的minOccurs
<xs:complexType>
<xs:choice minOccurs="3" maxOccurs="unbounded">
<xs:element ref="Start"/>
<xs:element ref="Center"/>
<xs:element ref="End"/>
<xs:element ref="PI" minOccurs="0"/>
<xs:element ref="Feature" minOccurs="0" maxOccurs="unbounded"/>
</xs:choice>
</xs:complexType>
時選擇具有的minOccurs> 1,會發生什麼?這是否意味着元素「開始」可能發生3次?
對於獨特而有效的問題+1! –