data-json-debug.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:23k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.data.JsonWriter
  9.  * @extends Ext.data.DataWriter
  10.  * DataWriter extension for writing an array or single {@link Ext.data.Record} object(s) in preparation for executing a remote CRUD action.
  11.  */
  12. Ext.data.JsonWriter = function(config) {
  13.     Ext.data.JsonWriter.superclass.constructor.call(this, config);
  14.     // careful to respect "returnJson", renamed to "encode"
  15.     if (this.returnJson != undefined) {
  16.         this.encode = this.returnJson;
  17.     }
  18. }
  19. Ext.extend(Ext.data.JsonWriter, Ext.data.DataWriter, {
  20.     /**
  21.      * @cfg {Boolean} returnJson <b>Deprecated.  Use {@link Ext.data.JsonWriter#encode} instead.
  22.      */
  23.     returnJson : undefined,
  24.     /**
  25.      * @cfg {Boolean} encode <tt>true</tt> to {@link Ext.util.JSON#encode encode} the
  26.      * {@link Ext.data.DataWriter#toHash hashed data}. Defaults to <tt>true</tt>.  When using
  27.      * {@link Ext.data.DirectProxy}, set this to <tt>false</tt> since Ext.Direct.JsonProvider will perform
  28.      * its own json-encoding.  In addition, if you're using {@link Ext.data.HttpProxy}, setting to <tt>false</tt>
  29.      * will cause HttpProxy to transmit data using the <b>jsonData</b> configuration-params of {@link Ext.Ajax#request}
  30.      * instead of <b>params</b>.  When using a {@link Ext.data.Store#restful} Store, some serverside frameworks are
  31.      * tuned to expect data through the jsonData mechanism.  In those cases, one will want to set <b>encode: <tt>false</tt></b>
  32.      */
  33.     encode : true,
  34.     /**
  35.      * Final action of a write event.  Apply the written data-object to params.
  36.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  37.      * @param {Record[]} rs
  38.      * @param {Object} http params
  39.      * @param {Object} data object populated according to DataReader meta-data "root" and "idProperty"
  40.      */
  41.     render : function(action, rs, params, data) {
  42.         Ext.apply(params, data);
  43.         if (this.encode === true) { // <-- @deprecated returnJson
  44.             if (Ext.isArray(rs) && data[this.meta.idProperty]) {
  45.                 params[this.meta.idProperty] = Ext.encode(params[this.meta.idProperty]);
  46.             }
  47.             params[this.meta.root] = Ext.encode(params[this.meta.root]);
  48.         }
  49.     },
  50.     /**
  51.      * createRecord
  52.      * @protected
  53.      * @param {Ext.data.Record} rec
  54.      */
  55.     createRecord : function(rec) {
  56.         return this.toHash(rec);
  57.     },
  58.     /**
  59.      * updateRecord
  60.      * @protected
  61.      * @param {Ext.data.Record} rec
  62.      */
  63.     updateRecord : function(rec) {
  64.         return this.toHash(rec);
  65.     },
  66.     /**
  67.      * destroyRecord
  68.      * @protected
  69.      * @param {Ext.data.Record} rec
  70.      */
  71.     destroyRecord : function(rec) {
  72.         return rec.id;
  73.     }
  74. });/**
  75.  * @class Ext.data.JsonReader
  76.  * @extends Ext.data.DataReader
  77.  * <p>Data reader class to create an Array of {@link Ext.data.Record} objects from a JSON response
  78.  * based on mappings in a provided {@link Ext.data.Record} constructor.</p>
  79.  * <p>Example code:</p>
  80.  * <pre><code>
  81. var Employee = Ext.data.Record.create([
  82.     {name: 'firstname'},                  // map the Record's "firstname" field to the row object's key of the same name
  83.     {name: 'job', mapping: 'occupation'}  // map the Record's "job" field to the row object's "occupation" key
  84. ]);
  85. var myReader = new Ext.data.JsonReader(
  86.     {                             // The metadata property, with configuration options:
  87.         totalProperty: "results", //   the property which contains the total dataset size (optional)
  88.         root: "rows",             //   the property which contains an Array of record data objects
  89.         idProperty: "id"          //   the property within each row object that provides an ID for the record (optional)
  90.     },
  91.     Employee  // {@link Ext.data.Record} constructor that provides mapping for JSON object
  92. );
  93. </code></pre>
  94.  * <p>This would consume a JSON data object of the form:</p><pre><code>
  95. {
  96.     results: 2,  // Reader's configured totalProperty
  97.     rows: [      // Reader's configured root
  98.         { id: 1, firstname: 'Bill', occupation: 'Gardener' },         // a row object
  99.         { id: 2, firstname: 'Ben' , occupation: 'Horticulturalist' }  // another row object
  100.     ]
  101. }
  102. </code></pre>
  103.  * <p><b><u>Automatic configuration using metaData</u></b></p>
  104.  * <p>It is possible to change a JsonReader's metadata at any time by including a <b><tt>metaData</tt></b>
  105.  * property in the JSON data object. If the JSON data object has a <b><tt>metaData</tt></b> property, a
  106.  * {@link Ext.data.Store Store} object using this Reader will reconfigure itself to use the newly provided
  107.  * field definition and fire its {@link Ext.data.Store#metachange metachange} event. The metachange event
  108.  * handler may interrogate the <b><tt>metaData</tt></b> property to perform any configuration required.
  109.  * Note that reconfiguring a Store potentially invalidates objects which may refer to Fields or Records
  110.  * which no longer exist.</p>
  111.  * <p>The <b><tt>metaData</tt></b> property in the JSON data object may contain:</p>
  112.  * <div class="mdetail-params"><ul>
  113.  * <li>any of the configuration options for this class</li>
  114.  * <li>a <b><tt>{@link Ext.data.Record#fields fields}</tt></b> property which the JsonReader will
  115.  * use as an argument to the {@link Ext.data.Record#create data Record create method} in order to
  116.  * configure the layout of the Records it will produce.</li>
  117.  * <li>a <b><tt>{@link Ext.data.Store#sortInfo sortInfo}</tt></b> property which the JsonReader will
  118.  * use to set the {@link Ext.data.Store}'s {@link Ext.data.Store#sortInfo sortInfo} property</li>
  119.  * <li>any user-defined properties needed</li>
  120.  * </ul></div>
  121.  * <p>To use this facility to send the same data as the example above (without having to code the creation
  122.  * of the Record constructor), you would create the JsonReader like this:</p><pre><code>
  123. var myReader = new Ext.data.JsonReader();
  124. </code></pre>
  125.  * <p>The first data packet from the server would configure the reader by containing a
  126.  * <b><tt>metaData</tt></b> property <b>and</b> the data. For example, the JSON data object might take
  127.  * the form:</p>
  128. <pre><code>
  129. {
  130.     metaData: {
  131.         idProperty: 'id',
  132.         root: 'rows',
  133.         totalProperty: 'results',
  134.         fields: [
  135.             {name: 'name'},
  136.             {name: 'job', mapping: 'occupation'}
  137.         ],
  138.         sortInfo: {field: 'name', direction:'ASC'}, // used by store to set its sortInfo
  139.         foo: 'bar' // custom property
  140.     },
  141.     results: 2,
  142.     rows: [ // an Array
  143.         { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
  144.         { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' }
  145.     ]
  146. }
  147. </code></pre>
  148.  * @cfg {String} totalProperty [total] Name of the property from which to retrieve the total number of records
  149.  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
  150.  * paged from the remote server.  Defaults to <tt>total</tt>.
  151.  * @cfg {String} successProperty [success] Name of the property from which to
  152.  * retrieve the success attribute. Defaults to <tt>success</tt>.  See
  153.  * {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
  154.  * for additional information.
  155.  * @cfg {String} root [undefined] <b>Required</b>.  The name of the property
  156.  * which contains the Array of row objects.  Defaults to <tt>undefined</tt>.
  157.  * An exception will be thrown if the root property is undefined. The data packet
  158.  * value for this property should be an empty array to clear the data or show
  159.  * no data.
  160.  * @cfg {String} idProperty [id] Name of the property within a row object that contains a record identifier value.  Defaults to <tt>id</tt>
  161.  * @constructor
  162.  * Create a new JsonReader
  163.  * @param {Object} meta Metadata configuration options.
  164.  * @param {Array/Object} recordType
  165.  * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
  166.  * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
  167.  * constructor created from {@link Ext.data.Record#create}.</p>
  168.  */
  169. Ext.data.JsonReader = function(meta, recordType){
  170.     meta = meta || {};
  171.     // default idProperty, successProperty & totalProperty -> "id", "success", "total"
  172.     Ext.applyIf(meta, {
  173.         idProperty: 'id',
  174.         successProperty: 'success',
  175.         totalProperty: 'total'
  176.     });
  177.     Ext.data.JsonReader.superclass.constructor.call(this, meta, recordType || meta.fields);
  178. };
  179. Ext.extend(Ext.data.JsonReader, Ext.data.DataReader, {
  180.     /**
  181.      * This JsonReader's metadata as passed to the constructor, or as passed in
  182.      * the last data packet's <b><tt>metaData</tt></b> property.
  183.      * @type Mixed
  184.      * @property meta
  185.      */
  186.     /**
  187.      * This method is only used by a DataProxy which has retrieved data from a remote server.
  188.      * @param {Object} response The XHR object which contains the JSON data in its responseText.
  189.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  190.      * a cache of Ext.data.Records.
  191.      */
  192.     read : function(response){
  193.         var json = response.responseText;
  194.         var o = Ext.decode(json);
  195.         if(!o) {
  196.             throw {message: "JsonReader.read: Json object not found"};
  197.         }
  198.         return this.readRecords(o);
  199.     },
  200.     // private function a store will implement
  201.     onMetaChange : function(meta, recordType, o){
  202.     },
  203.     /**
  204.      * @ignore
  205.      */
  206.     simpleAccess: function(obj, subsc) {
  207.         return obj[subsc];
  208.     },
  209.     /**
  210.      * @ignore
  211.      */
  212.     getJsonAccessor: function(){
  213.         var re = /[[.]/;
  214.         return function(expr) {
  215.             try {
  216.                 return(re.test(expr)) ?
  217.                 new Function("obj", "return obj." + expr) :
  218.                 function(obj){
  219.                     return obj[expr];
  220.                 };
  221.             } catch(e){}
  222.             return Ext.emptyFn;
  223.         };
  224.     }(),
  225.     /**
  226.      * Create a data block containing Ext.data.Records from a JSON object.
  227.      * @param {Object} o An object which contains an Array of row objects in the property specified
  228.      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
  229.      * which contains the total size of the dataset.
  230.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  231.      * a cache of Ext.data.Records.
  232.      */
  233.     readRecords : function(o){
  234.         /**
  235.          * After any data loads, the raw JSON data is available for further custom processing.  If no data is
  236.          * loaded or there is a load exception this property will be undefined.
  237.          * @type Object
  238.          */
  239.         this.jsonData = o;
  240.         if(o.metaData){
  241.             delete this.ef;
  242.             this.meta = o.metaData;
  243.             this.recordType = Ext.data.Record.create(o.metaData.fields);
  244.             this.onMetaChange(this.meta, this.recordType, o);
  245.         }
  246.         var s = this.meta, Record = this.recordType,
  247.             f = Record.prototype.fields, fi = f.items, fl = f.length, v;
  248.         // Generate extraction functions for the totalProperty, the root, the id, and for each field
  249.         this.buildExtractors();
  250.         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
  251.         if(s.totalProperty){
  252.             v = parseInt(this.getTotal(o), 10);
  253.             if(!isNaN(v)){
  254.                 totalRecords = v;
  255.             }
  256.         }
  257.         if(s.successProperty){
  258.             v = this.getSuccess(o);
  259.             if(v === false || v === 'false'){
  260.                 success = false;
  261.             }
  262.         }
  263.         var records = [];
  264.         for(var i = 0; i < c; i++){
  265.             var n = root[i];
  266.             var record = new Record(this.extractValues(n, fi, fl), this.getId(n));
  267.             record.json = n;
  268.             records[i] = record;
  269.         }
  270.         return {
  271.             success : success,
  272.             records : records,
  273.             totalRecords : totalRecords
  274.         };
  275.     },
  276.     // private
  277.     buildExtractors : function() {
  278.         if(this.ef){
  279.             return;
  280.         }
  281.         var s = this.meta, Record = this.recordType,
  282.             f = Record.prototype.fields, fi = f.items, fl = f.length;
  283.         if(s.totalProperty) {
  284.             this.getTotal = this.getJsonAccessor(s.totalProperty);
  285.         }
  286.         if(s.successProperty) {
  287.             this.getSuccess = this.getJsonAccessor(s.successProperty);
  288.         }
  289.         this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
  290.         if (s.id || s.idProperty) {
  291.             var g = this.getJsonAccessor(s.id || s.idProperty);
  292.             this.getId = function(rec) {
  293.                 var r = g(rec);
  294.                 return (r === undefined || r === "") ? null : r;
  295.             };
  296.         } else {
  297.             this.getId = function(){return null;};
  298.         }
  299.         var ef = [];
  300.         for(var i = 0; i < fl; i++){
  301.             f = fi[i];
  302.             var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
  303.             ef.push(this.getJsonAccessor(map));
  304.         }
  305.         this.ef = ef;
  306.     },
  307.     // private extractValues
  308.     extractValues: function(data, items, len) {
  309.         var f, values = {};
  310.         for(var j = 0; j < len; j++){
  311.             f = items[j];
  312.             var v = this.ef[j](data);
  313.             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue, data);
  314.         }
  315.         return values;
  316.     },
  317.     /**
  318.      * Decode a json response from server.
  319.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  320.      * @param {Object} response
  321.      */
  322.     readResponse : function(action, response) {
  323.         var o = (response.responseText !== undefined) ? Ext.decode(response.responseText) : response;
  324.         if(!o) {
  325.             throw new Ext.data.JsonReader.Error('response');
  326.         }
  327.         if (Ext.isEmpty(o[this.meta.successProperty])) {
  328.             throw new Ext.data.JsonReader.Error('successProperty-response', this.meta.successProperty);
  329.         }
  330.         // TODO, separate empty and undefined exceptions.
  331.         if ((action === Ext.data.Api.actions.create || action === Ext.data.Api.actions.update)) {
  332.             if (Ext.isEmpty(o[this.meta.root])) {
  333.                 throw new Ext.data.JsonReader.Error('root-emtpy', this.meta.root);
  334.             }
  335.             else if (o[this.meta.root] === undefined) {
  336.                 throw new Ext.data.JsonReader.Error('root-undefined-response', this.meta.root);
  337.             }
  338.         }
  339.         // make sure extraction functions are defined.
  340.         this.ef = this.buildExtractors();
  341.         return o;
  342.     }
  343. });
  344. /**
  345.  * @class Ext.data.JsonReader.Error
  346.  * Error class for JsonReader
  347.  */
  348. Ext.data.JsonReader.Error = Ext.extend(Ext.Error, {
  349.     constructor : function(message, arg) {
  350.         this.arg = arg;
  351.         Ext.Error.call(this, message);
  352.     },
  353.     name : 'Ext.data.JsonReader'
  354. });
  355. Ext.apply(Ext.data.JsonReader.Error.prototype, {
  356.     lang: {
  357.         'response': "An error occurred while json-decoding your server response",
  358.         'successProperty-response': 'Could not locate your "successProperty" in your server response.  Please review your JsonReader config to ensure the config-property "successProperty" matches the property in your server-response.  See the JsonReader docs.',
  359.         'root-undefined-response': 'Could not locate your "root" property in your server response.  Please review your JsonReader config to ensure the config-property "root" matches the property your server-response.  See the JsonReader docs.',
  360.         'root-undefined-config': 'Your JsonReader was configured without a "root" property.  Please review your JsonReader config and make sure to define the root property.  See the JsonReader docs.',
  361.         'idProperty-undefined' : 'Your JsonReader was configured without an "idProperty"  Please review your JsonReader configuration and ensure the "idProperty" is set (e.g.: "id").  See the JsonReader docs.',
  362.         'root-emtpy': 'Data was expected to be returned by the server in the "root" property of the response.  Please review your JsonReader configuration to ensure the "root" property matches that returned in the server-response.  See JsonReader docs.'
  363.     }
  364. });
  365. /**
  366.  * @class Ext.data.ArrayReader
  367.  * @extends Ext.data.JsonReader
  368.  * <p>Data reader class to create an Array of {@link Ext.data.Record} objects from an Array.
  369.  * Each element of that Array represents a row of data fields. The
  370.  * fields are pulled into a Record object using as a subscript, the <code>mapping</code> property
  371.  * of the field definition if it exists, or the field's ordinal position in the definition.</p>
  372.  * <p>Example code:</p>
  373.  * <pre><code>
  374. var Employee = Ext.data.Record.create([
  375.     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
  376.     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
  377. ]);
  378. var myReader = new Ext.data.ArrayReader({
  379.     {@link #idIndex}: 0
  380. }, Employee);
  381. </code></pre>
  382.  * <p>This would consume an Array like this:</p>
  383.  * <pre><code>
  384. [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
  385.  * </code></pre>
  386.  * @constructor
  387.  * Create a new ArrayReader
  388.  * @param {Object} meta Metadata configuration options.
  389.  * @param {Array/Object} recordType
  390.  * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
  391.  * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
  392.  * constructor created from {@link Ext.data.Record#create}.</p>
  393.  */
  394. Ext.data.ArrayReader = Ext.extend(Ext.data.JsonReader, {
  395.     /**
  396.      * @cfg {String} successProperty
  397.      * @hide
  398.      */
  399.     /**
  400.      * @cfg {Number} id (optional) The subscript within row Array that provides an ID for the Record.
  401.      * Deprecated. Use {@link #idIndex} instead.
  402.      */
  403.     /**
  404.      * @cfg {Number} idIndex (optional) The subscript within row Array that provides an ID for the Record.
  405.      */
  406.     /**
  407.      * Create a data block containing Ext.data.Records from an Array.
  408.      * @param {Object} o An Array of row objects which represents the dataset.
  409.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  410.      * a cache of Ext.data.Records.
  411.      */
  412.     readRecords : function(o){
  413.         this.arrayData = o;
  414.         var s = this.meta,
  415.             sid = s ? Ext.num(s.idIndex, s.id) : null,
  416.             recordType = this.recordType, 
  417.             fields = recordType.prototype.fields,
  418.             records = [],
  419.             v;
  420.         if(!this.getRoot) {
  421.             this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p) {return p;};
  422.             if(s.totalProperty) {
  423.                 this.getTotal = this.getJsonAccessor(s.totalProperty);
  424.             }
  425.         }
  426.         var root = this.getRoot(o);
  427.         for(var i = 0; i < root.length; i++) {
  428.             var n = root[i];
  429.             var values = {};
  430.             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
  431.             for(var j = 0, jlen = fields.length; j < jlen; j++) {
  432.                 var f = fields.items[j];
  433.                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
  434.                 v = n[k] !== undefined ? n[k] : f.defaultValue;
  435.                 v = f.convert(v, n);
  436.                 values[f.name] = v;
  437.             }
  438.             var record = new recordType(values, id);
  439.             record.json = n;
  440.             records[records.length] = record;
  441.         }
  442.         var totalRecords = records.length;
  443.         if(s.totalProperty) {
  444.             v = parseInt(this.getTotal(o), 10);
  445.             if(!isNaN(v)) {
  446.                 totalRecords = v;
  447.             }
  448.         }
  449.         return {
  450.             records : records,
  451.             totalRecords : totalRecords
  452.         };
  453.     }
  454. });/**
  455.  * @class Ext.data.ArrayStore
  456.  * @extends Ext.data.Store
  457.  * <p>Formerly known as "SimpleStore".</p>
  458.  * <p>Small helper class to make creating {@link Ext.data.Store}s from Array data easier.
  459.  * An ArrayStore will be automatically configured with a {@link Ext.data.ArrayReader}.</p>
  460.  * <p>A store configuration would be something like:<pre><code>
  461. var store = new Ext.data.ArrayStore({
  462.     // store configs
  463.     autoDestroy: true,
  464.     storeId: 'myStore',
  465.     // reader configs
  466.     idIndex: 0,  
  467.     fields: [
  468.        'company',
  469.        {name: 'price', type: 'float'},
  470.        {name: 'change', type: 'float'},
  471.        {name: 'pctChange', type: 'float'},
  472.        {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'}
  473.     ]
  474. });
  475.  * </code></pre></p>
  476.  * <p>This store is configured to consume a returned object of the form:<pre><code>
  477. var myData = [
  478.     ['3m Co',71.72,0.02,0.03,'9/1 12:00am'],
  479.     ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am'],
  480.     ['Boeing Co.',75.43,0.53,0.71,'9/1 12:00am'],
  481.     ['Hewlett-Packard Co.',36.53,-0.03,-0.08,'9/1 12:00am'],
  482.     ['Wal-Mart Stores, Inc.',45.45,0.73,1.63,'9/1 12:00am']
  483. ];
  484.  * </code></pre>
  485.  * An object literal of this form could also be used as the {@link #data} config option.</p>
  486.  * <p><b>*Note:</b> Although not listed here, this class accepts all of the configuration options of 
  487.  * <b>{@link Ext.data.ArrayReader ArrayReader}</b>.</p>
  488.  * @constructor
  489.  * @param {Object} config
  490.  * @xtype arraystore
  491.  */
  492. Ext.data.ArrayStore = Ext.extend(Ext.data.Store, {
  493.     /**
  494.      * @cfg {Ext.data.DataReader} reader @hide
  495.      */
  496.     constructor: function(config){
  497.         Ext.data.ArrayStore.superclass.constructor.call(this, Ext.apply(config, {
  498.             reader: new Ext.data.ArrayReader(config)
  499.         }));
  500.     },
  501.     loadData : function(data, append){
  502.         if(this.expandData === true){
  503.             var r = [];
  504.             for(var i = 0, len = data.length; i < len; i++){
  505.                 r[r.length] = [data[i]];
  506.             }
  507.             data = r;
  508.         }
  509.         Ext.data.ArrayStore.superclass.loadData.call(this, data, append);
  510.     }
  511. });
  512. Ext.reg('arraystore', Ext.data.ArrayStore);
  513. // backwards compat
  514. Ext.data.SimpleStore = Ext.data.ArrayStore;
  515. Ext.reg('simplestore', Ext.data.SimpleStore);/**
  516.  * @class Ext.data.JsonStore
  517.  * @extends Ext.data.Store
  518.  * <p>Small helper class to make creating {@link Ext.data.Store}s from JSON data easier.
  519.  * A JsonStore will be automatically configured with a {@link Ext.data.JsonReader}.</p>
  520.  * <p>A store configuration would be something like:<pre><code>
  521. var store = new Ext.data.JsonStore({
  522.     // store configs
  523.     autoDestroy: true,
  524.     url: 'get-images.php',
  525.     storeId: 'myStore',
  526.     // reader configs
  527.     root: 'images',
  528.     idProperty: 'name',  
  529.     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
  530. });
  531.  * </code></pre></p>
  532.  * <p>This store is configured to consume a returned object of the form:<pre><code>
  533. {
  534.     images: [
  535.         {name: 'Image one', url:'/GetImage.php?id=1', size:46.5, lastmod: new Date(2007, 10, 29)},
  536.         {name: 'Image Two', url:'/GetImage.php?id=2', size:43.2, lastmod: new Date(2007, 10, 30)}
  537.     ]
  538. }
  539.  * </code></pre>
  540.  * An object literal of this form could also be used as the {@link #data} config option.</p>
  541.  * <p><b>*Note:</b> Although not listed here, this class accepts all of the configuration options of 
  542.  * <b>{@link Ext.data.JsonReader JsonReader}</b>.</p>
  543.  * @constructor
  544.  * @param {Object} config
  545.  * @xtype jsonstore
  546.  */
  547. Ext.data.JsonStore = Ext.extend(Ext.data.Store, {
  548.     /**
  549.      * @cfg {Ext.data.DataReader} reader @hide
  550.      */
  551.     constructor: function(config){
  552.         Ext.data.JsonStore.superclass.constructor.call(this, Ext.apply(config, {
  553.             reader: new Ext.data.JsonReader(config)
  554.         }));
  555.     }
  556. });
  557. Ext.reg('jsonstore', Ext.data.JsonStore);