xsd – XML Schema中mixed =“true”和xs:extension的区别

前端之家收集整理的这篇文章主要介绍了xsd – XML Schema中mixed =“true”和xs:extension的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这两者之间的实际差异是什么:
<xs:element name="A">
 <xs:complexType mixed="true">
  <xs:attribute name="att" type="xs:boolean"/>
 </xs:complexType>
</xs:element>

<xs:element name="B">
 <xs:complexType>
  <xs:simpleContent>
   <xs:extension base="xs:string">
    <xs:attribute name="att" type="xs:boolean"/>
   </xs:extension>
  </xs:simpleContent>
 </xs:complexType>
</xs:element>
两者是不同的.您的第一个示例使用mixed =“true”表示混合内容,即与子元素混合的字符数据.而您的第二个示例将元素内容限制为xs:string类型.两者都表明存在属性.

以你的例子,两者几乎是一样的.但是,如果您不打算使用混合内容,即您不打算添加子元素,则第二个版本会更清晰.

原文链接:https://www.f2er.com/xml/292492.html

猜你在找的XML相关文章