Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / Json.html
index f1d1f01..8407bab 100644 (file)
@@ -3,8 +3,8 @@
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>The source code</title>
-  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
-  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
   <style type="text/css">
     .highlight { display: block; background-color: #ddd; }
   </style>
 </span> * @author Ed Spencer
  * @class Ext.data.reader.Json
  * @extends Ext.data.reader.Reader
- * 
+ *
  * &lt;p&gt;The JSON Reader is used by a Proxy to read a server response that is sent back in JSON format. This usually
  * happens as a result of loading a Store - for example we might create something like this:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 Ext.define('User', {
     extend: 'Ext.data.Model',
     fields: ['id', 'name', 'email']
 });
 
-var store = new Ext.data.Store({
+var store = Ext.create('Ext.data.Store', {
     model: 'User',
     proxy: {
         type: 'ajax',
@@ -40,23 +40,23 @@ var store = new Ext.data.Store({
     }
 });
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;The example above creates a 'User' model. Models are explained in the {@link Ext.data.Model Model} docs if you're
  * not already familiar with them.&lt;/p&gt;
- * 
- * &lt;p&gt;We created the simplest type of JSON Reader possible by simply telling our {@link Ext.data.Store Store}'s 
+ *
+ * &lt;p&gt;We created the simplest type of JSON Reader possible by simply telling our {@link Ext.data.Store Store}'s
  * {@link Ext.data.proxy.Proxy Proxy} that we want a JSON Reader. The Store automatically passes the configured model to the
  * Store, so it is as if we passed this instead:
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 reader: {
     type : 'json',
     model: 'User'
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &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;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 [
     {
@@ -71,13 +71,13 @@ reader: {
     }
 ]
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;&lt;u&gt;Reading other JSON formats&lt;/u&gt;&lt;/p&gt;
- * 
+ *
  * &lt;p&gt;If you already have your JSON format defined and it doesn't look quite like what we have above, you can usually
- * pass JsonReader a couple of configuration options to make it parse your format. For example, we can use the 
+ * pass JsonReader a couple of configuration options to make it parse your format. For example, we can use the
  * {@link #root} configuration to parse data that comes back like this:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 {
     &quot;users&quot;: [
@@ -94,19 +94,19 @@ reader: {
     ]
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;To parse this we just pass in a {@link #root} configuration that matches the 'users' above:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 reader: {
     type: 'json',
     root: 'users'
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;Sometimes the JSON structure is even more complicated. Document databases like CouchDB often provide metadata
  * around each record inside a nested structure like this:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 {
     &quot;total&quot;: 122,
@@ -124,11 +124,11 @@ reader: {
     ]
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;In the case above the record data is nested an additional level inside the &quot;users&quot; array as each &quot;user&quot; item has
- * additional metadata surrounding it ('id' and 'value' in this case). To parse data out of each &quot;user&quot; item in the 
+ * additional metadata surrounding it ('id' and 'value' in this case). To parse data out of each &quot;user&quot; item in the
  * JSON above we need to specify the {@link #record} configuration like this:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 reader: {
     type  : 'json',
@@ -136,13 +136,13 @@ reader: {
     record: 'user'
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;&lt;u&gt;Response metadata&lt;/u&gt;&lt;/p&gt;
- * 
- * &lt;p&gt;The server can return additional data in its response, such as the {@link #totalProperty total number of records} 
+ *
+ * &lt;p&gt;The server can return additional data in its response, such as the {@link #totalProperty total number of records}
  * and the {@link #successProperty success status of the response}. These are typically included in the JSON response
  * like this:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 {
     &quot;total&quot;: 100,
@@ -156,11 +156,11 @@ reader: {
     ]
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;If these properties are present in the JSON response they can be parsed out by the JsonReader and used by the
- * Store that loaded it. We can set up the names of these properties by specifying a final pair of configuration 
+ * Store that loaded it. We can set up the names of these properties by specifying a final pair of configuration
  * options:&lt;/p&gt;
- * 
+ *
 &lt;pre&gt;&lt;code&gt;
 reader: {
     type : 'json',
@@ -169,7 +169,7 @@ reader: {
     successProperty: 'success'
 }
 &lt;/code&gt;&lt;/pre&gt;
- * 
+ *
  * &lt;p&gt;These final options are not necessary to make the Reader work, but can be useful when the server needs to report
  * an error or if it needs to indicate that there is a lot of data available of which only a subset is currently being
  * returned.&lt;/p&gt;
@@ -178,23 +178,23 @@ Ext.define('Ext.data.reader.Json', {
     extend: 'Ext.data.reader.Reader',
     alternateClassName: 'Ext.data.JsonReader',
     alias : 'reader.json',
-    
+
     root: '',
-    
+
 <span id='Ext-data-reader-Json-cfg-record'>    /**
 </span>     * @cfg {String} record The optional location within the JSON response that the record data itself can be found at.
-     * See the JsonReader intro docs for more details. This is not often needed and defaults to undefined.
+     * See the JsonReader intro docs for more details. This is not often needed.
      */
-    
+
 <span id='Ext-data-reader-Json-cfg-useSimpleAccessors'>    /**
 </span>     * @cfg {Boolean} useSimpleAccessors True to ensure that field names/mappings are treated as literals when
      * reading values. Defalts to &lt;tt&gt;false&lt;/tt&gt;.
      * For example, by default, using the mapping &quot;foo.bar.baz&quot; will try and read a property foo from the root, then a property bar
-     * from foo, then a property baz from bar. Setting the simple accessors to true will read the property with the name 
+     * from foo, then a property baz from bar. Setting the simple accessors to true will read the property with the name
      * &quot;foo.bar.baz&quot; direct from the root object.
      */
     useSimpleAccessors: false,
-    
+
 <span id='Ext-data-reader-Json-method-readRecords'>    /**
 </span>     * Reads a JSON object and returns a ResultSet. Uses the internal getTotal and getSuccess extractors to
      * retrieve meta data from the response, and extractData to turn the JSON data into model instances.
@@ -208,9 +208,8 @@ Ext.define('Ext.data.reader.Json', {
         }
 
 <span id='Ext-data-reader-Json-property-jsonData'>        /**
-</span>         * DEPRECATED - will be removed in Ext JS 5.0. This is just a copy of this.rawData - use that instead
-         * @property jsonData
-         * @type Mixed
+</span>         * @deprecated will be removed in Ext JS 5.0. This is just a copy of this.rawData - use that instead
+         * @property {Object} jsonData
          */
         this.jsonData = data;
         return this.callParent([data]);
@@ -218,8 +217,9 @@ Ext.define('Ext.data.reader.Json', {
 
     //inherit docs
     getResponseData: function(response) {
+        var data;
         try {
-            var data = Ext.decode(response.responseText);
+            data = Ext.decode(response.responseText);
         }
         catch (ex) {
             Ext.Error.raise({
@@ -241,7 +241,7 @@ Ext.define('Ext.data.reader.Json', {
     //inherit docs
     buildExtractors : function() {
         var me = this;
-        
+
         me.callParent(arguments);
 
         if (me.root) {
@@ -252,22 +252,27 @@ Ext.define('Ext.data.reader.Json', {
             };
         }
     },
-    
+
 <span id='Ext-data-reader-Json-method-extractData'>    /**
 </span>     * @private
      * We're just preparing the data for the superclass by pulling out the record objects we want. If a {@link #record}
      * was specified we have to pull those out of the larger JSON object, which is most of what this function is doing
      * @param {Object} root The JSON root node
-     * @return {Array} The records
+     * @return {Ext.data.Model[]} The records
      */
     extractData: function(root) {
         var recordName = this.record,
             data = [],
             length, i;
-        
+
         if (recordName) {
             length = root.length;
             
+            if (!length &amp;&amp; Ext.isObject(root)) {
+                length = 1;
+                root = [root];
+            }
+
             for (i = 0; i &lt; length; i++) {
                 data[i] = root[i][recordName];
             }
@@ -287,7 +292,7 @@ Ext.define('Ext.data.reader.Json', {
      */
     createAccessor: function() {
         var re = /[\[\.]/;
-        
+
         return function(expr) {
             if (Ext.isEmpty(expr)) {
                 return Ext.emptyFn;