定义一个必须为空且没有属性的XML元素

前端之家收集整理的这篇文章主要介绍了定义一个必须为空且没有属性的XML元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要定义一个没有子元素或任何内容的XML元素,并且没有属性

这是我在做什么

<xs:element name="myEmptyElement" type="_Empty"/>
<xs:complexType name="_Empty">
</xs:complexType>

这似乎工作正常,但我不得不想知道是否有办法做到这一点,而不必声明一个复杂的类型。另外,如果我有什么问题,请让我知道。

预计有人可能好奇为什么我需要这样的元素:它是一个SOAP操作,不需要任何参数值。

(1)您可以避免定义一个命名的xs:complexType:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="myEmptyElement">
    <xs:complexType/>
  </xs:element>
</xs:schema>

(2)可以使用xs:simpleType而不是xs:complexType:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="myEmptyElement">
    <xs:simpleType>
      <xs:restriction base="xs:string">
        <xs:maxLength value="0"/>
      </xs:restriction>
    </xs:simpleType>
  </xs:element>
</xs:schema>

(3)你可以使用fixed =“”[credit:@Nemo]:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="myEmptyElement" type="xs:string" fixed=""/>
</xs:schema>

(4)但请注意,如果您避免对内容模型发表任何说明:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="myEmptyElement"/>
</xs:schema>

您将允许myEmptyElement中的任何属性和任何内容

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

猜你在找的XML相关文章