Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / source / Xml.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-data-reader-Xml'>/**
19 </span> * @author Ed Spencer
20  * @class Ext.data.reader.Xml
21  * @extends Ext.data.reader.Reader
22  * 
23  * &lt;p&gt;The XML Reader is used by a Proxy to read a server response that is sent back in XML format. This usually
24  * happens as a result of loading a Store - for example we might create something like this:&lt;/p&gt;
25  * 
26 &lt;pre&gt;&lt;code&gt;
27 Ext.define('User', {
28     extend: 'Ext.data.Model',
29     fields: ['id', 'name', 'email']
30 });
31
32 var store = new Ext.data.Store({
33     model: 'User',
34     proxy: {
35         type: 'ajax',
36         url : 'users.xml',
37         reader: {
38             type: 'xml',
39             record: 'user'
40         }
41     }
42 });
43 &lt;/code&gt;&lt;/pre&gt;
44  * 
45  * &lt;p&gt;The example above creates a 'User' model. Models are explained in the {@link Ext.data.Model Model} docs if you're
46  * not already familiar with them.&lt;/p&gt;
47  * 
48  * &lt;p&gt;We created the simplest type of XML Reader possible by simply telling our {@link Ext.data.Store Store}'s 
49  * {@link Ext.data.proxy.Proxy Proxy} that we want a XML Reader. The Store automatically passes the configured model to the
50  * Store, so it is as if we passed this instead:
51  * 
52 &lt;pre&gt;&lt;code&gt;
53 reader: {
54     type : 'xml',
55     model: 'User',
56     record: 'user'
57 }
58 &lt;/code&gt;&lt;/pre&gt;
59  * 
60  * &lt;p&gt;The reader we set up is ready to read data from our server - at the moment it will accept a response like this:&lt;/p&gt;
61  *
62 &lt;pre&gt;&lt;code&gt;
63 &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
64 &amp;lt;user&amp;gt;
65     &amp;lt;id&amp;gt;1&amp;lt;/id&amp;gt;
66     &amp;lt;name&amp;gt;Ed Spencer&amp;lt;/name&amp;gt;
67     &amp;lt;email&amp;gt;ed@sencha.com&amp;lt;/email&amp;gt;
68 &amp;lt;/user&amp;gt;
69 &amp;lt;user&amp;gt;
70     &amp;lt;id&amp;gt;2&amp;lt;/id&amp;gt;
71     &amp;lt;name&amp;gt;Abe Elias&amp;lt;/name&amp;gt;
72     &amp;lt;email&amp;gt;abe@sencha.com&amp;lt;/email&amp;gt;
73 &amp;lt;/user&amp;gt;
74 &lt;/code&gt;&lt;/pre&gt;
75  * 
76  * &lt;p&gt;The XML Reader uses the configured {@link #record} option to pull out the data for each record - in this case we
77  * set record to 'user', so each &amp;lt;user&amp;gt; above will be converted into a User model.&lt;/p&gt;
78  * 
79  * &lt;p&gt;&lt;u&gt;Reading other XML formats&lt;/u&gt;&lt;/p&gt;
80  * 
81  * &lt;p&gt;If you already have your XML format defined and it doesn't look quite like what we have above, you can usually
82  * pass XmlReader a couple of configuration options to make it parse your format. For example, we can use the 
83  * {@link #root} configuration to parse data that comes back like this:&lt;/p&gt;
84  * 
85 &lt;pre&gt;&lt;code&gt;
86 &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
87 &amp;lt;users&amp;gt;
88     &amp;lt;user&amp;gt;
89         &amp;lt;id&amp;gt;1&amp;lt;/id&amp;gt;
90         &amp;lt;name&amp;gt;Ed Spencer&amp;lt;/name&amp;gt;
91         &amp;lt;email&amp;gt;ed@sencha.com&amp;lt;/email&amp;gt;
92     &amp;lt;/user&amp;gt;
93     &amp;lt;user&amp;gt;
94         &amp;lt;id&amp;gt;2&amp;lt;/id&amp;gt;
95         &amp;lt;name&amp;gt;Abe Elias&amp;lt;/name&amp;gt;
96         &amp;lt;email&amp;gt;abe@sencha.com&amp;lt;/email&amp;gt;
97     &amp;lt;/user&amp;gt;
98 &amp;lt;/users&amp;gt;
99 &lt;/code&gt;&lt;/pre&gt;
100  * 
101  * &lt;p&gt;To parse this we just pass in a {@link #root} configuration that matches the 'users' above:&lt;/p&gt;
102  * 
103 &lt;pre&gt;&lt;code&gt;
104 reader: {
105     type  : 'xml',
106     root  : 'users',
107     record: 'user'
108 }
109 &lt;/code&gt;&lt;/pre&gt;
110  * 
111  * &lt;p&gt;Note that XmlReader doesn't care whether your {@link #root} and {@link #record} elements are nested deep inside
112  * a larger structure, so a response like this will still work:
113  * 
114 &lt;pre&gt;&lt;code&gt;
115 &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
116 &amp;lt;deeply&amp;gt;
117     &amp;lt;nested&amp;gt;
118         &amp;lt;xml&amp;gt;
119             &amp;lt;users&amp;gt;
120                 &amp;lt;user&amp;gt;
121                     &amp;lt;id&amp;gt;1&amp;lt;/id&amp;gt;
122                     &amp;lt;name&amp;gt;Ed Spencer&amp;lt;/name&amp;gt;
123                     &amp;lt;email&amp;gt;ed@sencha.com&amp;lt;/email&amp;gt;
124                 &amp;lt;/user&amp;gt;
125                 &amp;lt;user&amp;gt;
126                     &amp;lt;id&amp;gt;2&amp;lt;/id&amp;gt;
127                     &amp;lt;name&amp;gt;Abe Elias&amp;lt;/name&amp;gt;
128                     &amp;lt;email&amp;gt;abe@sencha.com&amp;lt;/email&amp;gt;
129                 &amp;lt;/user&amp;gt;
130             &amp;lt;/users&amp;gt;
131         &amp;lt;/xml&amp;gt;
132     &amp;lt;/nested&amp;gt;
133 &amp;lt;/deeply&amp;gt;
134 &lt;/code&gt;&lt;/pre&gt;
135  * 
136  * &lt;p&gt;&lt;u&gt;Response metadata&lt;/u&gt;&lt;/p&gt;
137  * 
138  * &lt;p&gt;The server can return additional data in its response, such as the {@link #totalProperty total number of records} 
139  * and the {@link #successProperty success status of the response}. These are typically included in the XML response
140  * like this:&lt;/p&gt;
141  * 
142 &lt;pre&gt;&lt;code&gt;
143 &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
144 &amp;lt;total&amp;gt;100&amp;lt;/total&amp;gt;
145 &amp;lt;success&amp;gt;true&amp;lt;/success&amp;gt;
146 &amp;lt;users&amp;gt;
147     &amp;lt;user&amp;gt;
148         &amp;lt;id&amp;gt;1&amp;lt;/id&amp;gt;
149         &amp;lt;name&amp;gt;Ed Spencer&amp;lt;/name&amp;gt;
150         &amp;lt;email&amp;gt;ed@sencha.com&amp;lt;/email&amp;gt;
151     &amp;lt;/user&amp;gt;
152     &amp;lt;user&amp;gt;
153         &amp;lt;id&amp;gt;2&amp;lt;/id&amp;gt;
154         &amp;lt;name&amp;gt;Abe Elias&amp;lt;/name&amp;gt;
155         &amp;lt;email&amp;gt;abe@sencha.com&amp;lt;/email&amp;gt;
156     &amp;lt;/user&amp;gt;
157 &amp;lt;/users&amp;gt;
158 &lt;/code&gt;&lt;/pre&gt;
159  * 
160  * &lt;p&gt;If these properties are present in the XML response they can be parsed out by the XmlReader and used by the
161  * Store that loaded it. We can set up the names of these properties by specifying a final pair of configuration 
162  * options:&lt;/p&gt;
163  * 
164 &lt;pre&gt;&lt;code&gt;
165 reader: {
166     type: 'xml',
167     root: 'users',
168     totalProperty  : 'total',
169     successProperty: 'success'
170 }
171 &lt;/code&gt;&lt;/pre&gt;
172  * 
173  * &lt;p&gt;These final options are not necessary to make the Reader work, but can be useful when the server needs to report
174  * an error or if it needs to indicate that there is a lot of data available of which only a subset is currently being
175  * returned.&lt;/p&gt;
176  * 
177  * &lt;p&gt;&lt;u&gt;Response format&lt;/u&gt;&lt;/p&gt;
178  * 
179  * &lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; in order for the browser to parse a returned XML document, the Content-Type header in the HTTP 
180  * response must be set to &quot;text/xml&quot; or &quot;application/xml&quot;. This is very important - the XmlReader will not
181  * work correctly otherwise.&lt;/p&gt;
182  */
183 Ext.define('Ext.data.reader.Xml', {
184     extend: 'Ext.data.reader.Reader',
185     alternateClassName: 'Ext.data.XmlReader',
186     alias : 'reader.xml',
187     
188 <span id='Ext-data-reader-Xml-cfg-record'>    /**
189 </span>     * @cfg {String} record The DomQuery path to the repeated element which contains record information.
190      */
191
192 <span id='Ext-data-reader-Xml-method-createAccessor'>    /**
193 </span>     * @private
194      * Creates a function to return some particular key of data from a response. The totalProperty and
195      * successProperty are treated as special cases for type casting, everything else is just a simple selector.
196      * @param {String} key
197      * @return {Function}
198      */
199     createAccessor: function(expr) {
200         var me = this;
201         
202         if (Ext.isEmpty(expr)) {
203             return Ext.emptyFn;
204         }
205         
206         if (Ext.isFunction(expr)) {
207             return expr;
208         }
209         
210         return function(root) {
211             return me.getNodeValue(Ext.DomQuery.selectNode(expr, root));
212         };
213     },
214     
215     getNodeValue: function(node) {
216         if (node &amp;&amp; node.firstChild) {
217             return node.firstChild.nodeValue;
218         }
219         return undefined;
220     },
221
222     //inherit docs
223     getResponseData: function(response) {
224         var xml = response.responseXML;
225
226         //&lt;debug&gt;
227         if (!xml) {
228             Ext.Error.raise({
229                 response: response,
230                 msg: 'XML data not found in the response'
231             });
232         }
233         //&lt;/debug&gt;
234
235         return xml;
236     },
237
238 <span id='Ext-data-reader-Xml-method-getData'>    /**
239 </span>     * Normalizes the data object
240      * @param {Object} data The raw data object
241      * @return {Object} Returns the documentElement property of the data object if present, or the same object if not
242      */
243     getData: function(data) {
244         return data.documentElement || data;
245     },
246
247 <span id='Ext-data-reader-Xml-method-getRoot'>    /**
248 </span>     * @private
249      * Given an XML object, returns the Element that represents the root as configured by the Reader's meta data
250      * @param {Object} data The XML data object
251      * @return {Element} The root node element
252      */
253     getRoot: function(data) {
254         var nodeName = data.nodeName,
255             root     = this.root;
256         
257         if (!root || (nodeName &amp;&amp; nodeName == root)) {
258             return data;
259         } else if (Ext.DomQuery.isXml(data)) {
260             // This fix ensures we have XML data
261             // Related to TreeStore calling getRoot with the root node, which isn't XML
262             // Probably should be resolved in TreeStore at some point
263             return Ext.DomQuery.selectNode(root, data);
264         }
265     },
266
267 <span id='Ext-data-reader-Xml-method-extractData'>    /**
268 </span>     * @private
269      * We're just preparing the data for the superclass by pulling out the record nodes we want
270      * @param {Element} root The XML root node
271      * @return {Array} The records
272      */
273     extractData: function(root) {
274         var recordName = this.record;
275         
276         //&lt;debug&gt;
277         if (!recordName) {
278             Ext.Error.raise('Record is a required parameter');
279         }
280         //&lt;/debug&gt;
281         
282         if (recordName != root.nodeName) {
283             root = Ext.DomQuery.select(recordName, root);
284         } else {
285             root = [root];
286         }
287         return this.callParent([root]);
288     },
289     
290 <span id='Ext-data-reader-Xml-method-getAssociatedDataRoot'>    /**
291 </span>     * @private
292      * See Ext.data.reader.Reader's getAssociatedDataRoot docs
293      * @param {Mixed} data The raw data object
294      * @param {String} associationName The name of the association to get data for (uses associationKey if present)
295      * @return {Mixed} The root
296      */
297     getAssociatedDataRoot: function(data, associationName) {
298         return Ext.DomQuery.select(associationName, data)[0];
299     },
300
301 <span id='Ext-data-reader-Xml-method-readRecords'>    /**
302 </span>     * Parses an XML document and returns a ResultSet containing the model instances
303      * @param {Object} doc Parsed XML document
304      * @return {Ext.data.ResultSet} The parsed result set
305      */
306     readRecords: function(doc) {
307         //it's possible that we get passed an array here by associations. Make sure we strip that out (see Ext.data.reader.Reader#readAssociated)
308         if (Ext.isArray(doc)) {
309             doc = doc[0];
310         }
311         
312 <span id='Ext-data-reader-Xml-property-xmlData'>        /**
313 </span>         * DEPRECATED - will be removed in Ext JS 5.0. This is just a copy of this.rawData - use that instead
314          * @property xmlData
315          * @type Object
316          */
317         this.xmlData = doc;
318         return this.callParent([doc]);
319     }
320 });</pre>
321 </body>
322 </html>