说明
xml schema中的all元素表示其中的子元素可以按照任何顺序出现,每个元素可以出现0次或者1次。
https://www.w3.org/TR/xmlschema-1/#element-all
文章来源:https://www.toymoban.com/news/detail-723457.html
maxOccurs的默认值是1,minOccurs 的默认值是1。文章来源地址https://www.toymoban.com/news/detail-723457.html
举例
<element name="TradePriceRequest">
<complexType>
<all>
<element name="tickerSymbol" type="string"/>
</all>
</complexType>
</element
<complexType name="POType">
<all>
<element name="id" type="string/>
<element name="name" type="string"/>
<element name="items">
<complexType>
<all>
<element name="item" type="tns:Item" minOccurs="0" maxOccurs="unbounded"/>
</all>
</complexType>
</element>
</all>
</complexType>
<complexType name="Item">
<all>
<element name="quantity" type="int"/>
<element name="product" type="string"/>
</all>
</complexType>
到了这里,关于xml schema中的all元素的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!