Ultimele tutoriale de dezvoltare web
 

XSD Cum sa?


Documentele XML pot avea o trimitere la un DTD sau o schemă XML.


Un document XML simplă

Uită - te la acest document XML simplu numit "note.xml" :

<?xml version="1.0"?>
<note>
  <to>Tove</to>
  <from>Jani</from>
  <heading>Reminder</heading>
  <body>Don't forget me this weekend!</body>
</note>

Un fișier DTD

Următorul exemplu este un fișier DTD numit "note.dtd" care definește elementele documentului XML de mai sus ("note.xml") :

<!ELEMENT note (to, from, heading, body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>

Prima linie definește elementul notă pentru a avea patru elemente copil: "to, from, heading, body" de "to, from, heading, body" .

Linia 2-5 definește la, de la, poziție, elemente de caroserie care urmează să fie de tip "#PCDATA" .


O schemă XML

Următorul exemplu este un fișier XML Schema numit "note.xsd" care definește elementele documentului XML de mai sus ("note.xml") :

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3ii.com"
xmlns="http://www.w3ii.com"
elementFormDefault="qualified">

<xs:element name="note">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="to" type="xs:string"/>
      <xs:element name="from" type="xs:string"/>
      <xs:element name="heading" type="xs:string"/>
      <xs:element name="body" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

</xs:schema>

Elementul notă este un complex type , deoarece conține alte elemente. Celelalte elemente (to, from, heading, body) de simple types (to, from, heading, body) sunt simple types , deoarece acestea nu conțin alte elemente. Vei afla mai multe despre simple și complexe tipuri în următoarele capitole.


O referință la un DTD

Acest document XML are o referință la un DTD:

<?xml version="1.0"?>

<!DOCTYPE note SYSTEM
"http://www.w3ii.com/xml/note.dtd">

<note>
  <to>Tove</to>
  <from>Jani</from>
  <heading>Reminder</heading>
  <body>Don't forget me this weekend!</body>
</note>

O referință la o schemă XML

Acest document XML are o referință la o schemă XML:

<?xml version="1.0"?>

<note
xmlns="http://www.w3ii.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3ii.com note.xsd">
  <to>Tove</to>
  <from>Jani</from>
  <heading>Reminder</heading>
  <body>Don't forget me this weekend!</body>
</note>