XML Schema any 元素

2018-02-26 11:03 更新

XSD <any> 元素

本節(jié)為你介紹 XML Schema any 元素的使用,可以用來(lái)擴(kuò)展 XML 文檔。


<any> 元素使我們有能力通過(guò)未被 schema 規(guī)定的元素來(lái)拓展 XML 文檔!


<any> 元素

<any> 元素使我們有能力通過(guò)未被 schema 規(guī)定的元素來(lái)拓展 XML 文檔!

下面這個(gè)例子是從名為 "family.xsd" 的 XML schema 中引用的片段。它展示了一個(gè)針對(duì) "person" 元素的聲明。通過(guò)使用 <any> 元素,我們可以通過(guò)任何元素(在 <lastname> 之后)擴(kuò)展 "person" 的內(nèi)容:

<xs:element name="person">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="firstname" type="xs:string"/>
      <xs:element name="lastname" type="xs:string"/>
      <xs:any minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

提示:在一個(gè)復(fù)雜類型中加入 <xs:any minOccurs="0"/>,則可通過(guò)其他外部元素?cái)U(kuò)展原復(fù)雜類型。

現(xiàn)在,我們希望使用 "children" 元素來(lái)擴(kuò)展 "person" 元素。這此種情況下我們就可以這么做,即使以上這個(gè) schema 的作者沒有聲明任何 "children" 元素。

請(qǐng)看這個(gè) schema 文件,名為 "children.xsd":

<?xml version="1.0" encoding="ISO-8859-1"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3cschools.com"
xmlns="http://www.w3cschools.com"
elementFormDefault="qualified">

<xs:element name="children">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="childname" type="xs:string"
      maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

</xs:schema>

下面這個(gè) XML 文件(名為 "Myfamily.xml"),使用了來(lái)自兩個(gè)不同的 schema 中的成分,"family.xsd" 和 "children.xsd":

<?xml version="1.0" encoding="ISO-8859-1"?>

<persons xmlns="http://www.microsoft.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.microsoft.com family.xsd
http://www.w3cschools.com children.xsd">

<person>
  <firstname>Hege</firstname>
  <lastname>Refsnes</lastname>
  <children>
    <childname>Cecilie</childname>
  </children>
</person>

<person>
  <firstname>Stale</firstname>
  <lastname>Refsnes</lastname>
</person>

</persons>

上面這個(gè) XML 文件是有效的,這是由于 schema "family.xsd" 允許我們通過(guò)在 "lastname" 元素后的可選元素來(lái)擴(kuò)展 "person" 元素。

<any> 和 <anyAttribute> 均可用于制作可擴(kuò)展的文檔!它們使文檔有能力包含未在主 XML schema 中聲明過(guò)的附加元素。

在下一節(jié)內(nèi)容中我們將講解 anyAttribute 元素。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)