Webová platforma nabízí pro analýzu a serializaci (zřetězení) XML tyto objekty:
- XMLSerializer pro zřetězení stromů DOM do podoby řetězce
- XPath pro adresaci (ukazování) jednotlivých částí dokumentu XML (prostřednictvím vlastní syntaxe)
- DOMParser pro analýzu a převod řetězce XML na strom DOM
- XMLHttpRequest pro analýzu zdrojů s URL do stromu DOM
Krok 1: jak vytvořit XML dokument
V této části si vyzkoušíme vytvoření XML dokumentu (coby instanci objektu Document
) v různých fázích.
Analýza a převod řetězce na strom DOM
Sestavení XML dokumentu začínaje z javascriptového objektového stromu (JXON)
Analýza a převod URL zdrojů do stromu DOM
XMLHttpRequest
Zde je ukázkový kód, který načte a převede XML soubor určený URL do stromu DOM:
var xhr = new XMLHttpRequest(); xhr.onload = function() { dump(xhr.responseXML.documentElement.nodeName); } xhr.onerror = function() { dump("Chyba při načítání XML."); } xhr.open("GET", "priklad.xml"); xhr.responseType = "document"; xhr.send();
xhr.responseXML
je instance objektu Document
.
io.js
Pokud dáváte přednost knihovně io.js, následující kód provede totéž, co předchozí příklad – převede XML dokument na strom DOM. Narozdíl od XMLHttpRequest
však nepracuje se vzdálenými soubory:
var oFile = DirIO.get("ProfD"); // %Profile% dir oFile.append("extensions"); oFile.append("{5872365E-67D1-4AFD-9480-FD293BEBD20D}"); oFile.append("people.xml"); oDOM = (new DOMParser()).parseFromString(FileIO.read(oFile), "text/xml"); // zobrazí název kořenového elementu nebo chybovou zprávu dump(oDOM.documentElement.nodeName == "parsererror" ? "error while parsing" : oDOM.documentElement.nodeName);
Part 2: how to serialize the content of a given XML document
In this section we already have a parsed XML document (that is, an instance of Document
) and want to use its content.
Serializing DOM trees to strings
First, create a DOM tree as described in How to Create a DOM tree. Alternatively, use a DOM tree obtained from XMLHttpRequest
.
Now, let's serialize doc
— the DOM tree — to a string:
var oSerializer = new XMLSerializer(); var sXML = oSerializer.serializeToString(doc);
From within a JS XPCOM component (or a JS module), new XMLSerializer()
is not available. Instead, write:
var oSerializer = Components.classes["@mozilla.org/xmlextras/xmlserializer;1"] .createInstance(Components.interfaces.nsIDOMSerializer); var sXML = oSerializer.serializeToString(doc);
"Pretty" serialization of DOM trees to strings
You can pretty print a DOM tree using XMLSerializer
and E4X. First, create a DOM tree as described in the How to Create a DOM tree article. Alternatively, use a DOM tree obtained from XMLHttpRequest
. We assume it's in the doc
variable.
var oSerializer = new XMLSerializer(); var sPrettyXML = XML(oSerializer.serializeToString(doc)).toXMLString();
Indents are provided with two spaces. You can, of course, use treeWalker
to write your own, more performant version which also has the advantage that you can customize the indent string to be whatever you like.
toXMLString
method your CDATA elements will be lost and only the containing text remains. So using the above method might not be useful if you have CDATA elements in your XML.<content><![CDATA[This is the content]]></content>
Will become
<content>This is the content</content>
Serializing DOM trees to Javascript Object trees (JXON)
JXON (lossless JavaScript XML Object Notation) is a generic name by which is defined the representation of JavaScript Objects using XML. If you are interested to address only some parts of an XML document, use XPath instead of converting the whole document into JSON! Otherwise, read the article about JXON.
Serializing DOM trees to files
First, create a DOM tree as described in the How to Create a DOM tree article. If you have already have a DOM tree from using XMLHttpRequest
, skip to the end of this section.
Now, let's serialize doc
— the DOM tree — to a file (you can read more about using files in Mozilla):
var oFOStream = Components.classes["@mozilla.org/network/file-output-stream;1"].createInstance(Components.interfaces.nsIFileOutputStream); var oFile = Components.classes["@mozilla.org/file/directory_service;1"].getService(Components.interfaces.nsIProperties).get("ProfD", Components.interfaces.nsILocalFile); // get profile folder oFile.append("extensions"); // extensions sub-directory oFile.append("{5872365E-67D1-4AFD-9480-FD293BEBD20D}"); // GUID of your extension oFile.append("myXMLFile.xml"); // filename oFOStream.init(oFile, 0x02 | 0x08 | 0x20, 0664, 0); // write, create, truncate (new XMLSerializer()).serializeToStream(doc, oFOStream, ""); // rememeber, doc is the DOM tree oFOStream.close();
Serializing XMLHttpRequest objects to files
If you already have a DOM tree from using XMLHttpRequest
, use the same code as above but replace serializer.serializeToStream(doc, oFOStream, "")
with serializer.serializeToStream(xmlHttpRequest.responseXML.documentElement, oFOStream, "")
where xmlHttpRequest
is an instance of XMLHttpRequest
.
Note that this first parses the XML retrieved from the server, then re-serializes it into a stream. Depending on your needs, you could just save the xmlHttpRequest.responseText
directly.