JsonReader.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:14k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.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.JsonReader
  9.  * @extends Ext.data.DataReader
  10.  * <p>Data reader class to create an Array of {@link Ext.data.Record} objects
  11.  * from a JSON packet based on mappings in a provided {@link Ext.data.Record}
  12.  * constructor.</p>
  13.  * <p>Example code:</p>
  14.  * <pre><code>
  15. var myReader = new Ext.data.JsonReader({
  16.     // metadata configuration options:
  17.     {@link #idProperty}: 'id'
  18.     {@link #root}: 'rows',
  19.     {@link #totalProperty}: 'results',
  20.     {@link Ext.data.DataReader#messageProperty}: "msg"  // The element within the response that provides a user-feedback message (optional)
  21.     // the fields config option will internally create an {@link Ext.data.Record}
  22.     // constructor that provides mapping for reading the record data objects
  23.     {@link Ext.data.DataReader#fields fields}: [
  24.         // map Record&#39;s 'firstname' field to data object&#39;s key of same name
  25.         {name: 'name'},
  26.         // map Record&#39;s 'job' field to data object&#39;s 'occupation' key
  27.         {name: 'job', mapping: 'occupation'}
  28.     ]
  29. });
  30. </code></pre>
  31.  * <p>This would consume a JSON data object of the form:</p><pre><code>
  32. {
  33.     results: 2000, // Reader&#39;s configured {@link #totalProperty}
  34.     rows: [        // Reader&#39;s configured {@link #root}
  35.         // record data objects:
  36.         { {@link #idProperty id}: 1, firstname: 'Bill', occupation: 'Gardener' },
  37.         { {@link #idProperty id}: 2, firstname: 'Ben' , occupation: 'Horticulturalist' },
  38.         ...
  39.     ]
  40. }
  41. </code></pre>
  42.  * <p><b><u>Automatic configuration using metaData</u></b></p>
  43.  * <p>It is possible to change a JsonReader's metadata at any time by including
  44.  * a <b><tt>metaData</tt></b> property in the JSON data object. If the JSON data
  45.  * object has a <b><tt>metaData</tt></b> property, a {@link Ext.data.Store Store}
  46.  * object using this Reader will reconfigure itself to use the newly provided
  47.  * field definition and fire its {@link Ext.data.Store#metachange metachange}
  48.  * event. The metachange event handler may interrogate the <b><tt>metaData</tt></b>
  49.  * property to perform any configuration required.</p>
  50.  * <p>Note that reconfiguring a Store potentially invalidates objects which may
  51.  * refer to Fields or Records which no longer exist.</p>
  52.  * <p>To use this facility you would create the JsonReader like this:</p><pre><code>
  53. var myReader = new Ext.data.JsonReader();
  54. </code></pre>
  55.  * <p>The first data packet from the server would configure the reader by
  56.  * containing a <b><tt>metaData</tt></b> property <b>and</b> the data. For
  57.  * example, the JSON data object might take the form:</p><pre><code>
  58. {
  59.     metaData: {
  60.         "{@link #idProperty}": "id",
  61.         "{@link #root}": "rows",
  62.         "{@link #totalProperty}": "results"
  63.         "{@link #successProperty}": "success",
  64.         "{@link Ext.data.DataReader#fields fields}": [
  65.             {"name": "name"},
  66.             {"name": "job", "mapping": "occupation"}
  67.         ],
  68.         // used by store to set its sortInfo
  69.         "sortInfo":{
  70.            "field": "name",
  71.            "direction": "ASC"
  72.         },
  73.         // {@link Ext.PagingToolbar paging data} (if applicable)
  74.         "start": 0,
  75.         "limit": 2,
  76.         // custom property
  77.         "foo": "bar"
  78.     },
  79.     // Reader&#39;s configured {@link #successProperty}
  80.     "success": true,
  81.     // Reader&#39;s configured {@link #totalProperty}
  82.     "results": 2000,
  83.     // Reader&#39;s configured {@link #root}
  84.     // (this data simulates 2 results {@link Ext.PagingToolbar per page})
  85.     "rows": [ // <b>*Note:</b> this must be an Array
  86.         { "id": 1, "name": "Bill", "occupation": "Gardener" },
  87.         { "id": 2, "name":  "Ben", "occupation": "Horticulturalist" }
  88.     ]
  89. }
  90.  * </code></pre>
  91.  * <p>The <b><tt>metaData</tt></b> property in the JSON data object should contain:</p>
  92.  * <div class="mdetail-params"><ul>
  93.  * <li>any of the configuration options for this class</li>
  94.  * <li>a <b><tt>{@link Ext.data.Record#fields fields}</tt></b> property which
  95.  * the JsonReader will use as an argument to the
  96.  * {@link Ext.data.Record#create data Record create method} in order to
  97.  * configure the layout of the Records it will produce.</li>
  98.  * <li>a <b><tt>{@link Ext.data.Store#sortInfo sortInfo}</tt></b> property
  99.  * which the JsonReader will use to set the {@link Ext.data.Store}'s
  100.  * {@link Ext.data.Store#sortInfo sortInfo} property</li>
  101.  * <li>any custom properties needed</li>
  102.  * </ul></div>
  103.  *
  104.  * @constructor
  105.  * Create a new JsonReader
  106.  * @param {Object} meta Metadata configuration options.
  107.  * @param {Array/Object} recordType
  108.  * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
  109.  * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
  110.  * constructor created from {@link Ext.data.Record#create}.</p>
  111.  */
  112. Ext.data.JsonReader = function(meta, recordType){
  113.     meta = meta || {};
  114.     /**
  115.      * @cfg {String} idProperty [id] Name of the property within a row object
  116.      * that contains a record identifier value.  Defaults to <tt>id</tt>
  117.      */
  118.     /**
  119.      * @cfg {String} successProperty [success] Name of the property from which to
  120.      * retrieve the success attribute. Defaults to <tt>success</tt>.  See
  121.      * {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
  122.      * for additional information.
  123.      */
  124.     /**
  125.      * @cfg {String} totalProperty [total] Name of the property from which to
  126.      * retrieve the total number of records in the dataset. This is only needed
  127.      * if the whole dataset is not passed in one go, but is being paged from
  128.      * the remote server.  Defaults to <tt>total</tt>.
  129.      */
  130.     /**
  131.      * @cfg {String} root [undefined] <b>Required</b>.  The name of the property
  132.      * which contains the Array of row objects.  Defaults to <tt>undefined</tt>.
  133.      * An exception will be thrown if the root property is undefined. The data
  134.      * packet value for this property should be an empty array to clear the data
  135.      * or show no data.
  136.      */
  137.     Ext.applyIf(meta, {
  138.         idProperty: 'id',
  139.         successProperty: 'success',
  140.         totalProperty: 'total'
  141.     });
  142.     Ext.data.JsonReader.superclass.constructor.call(this, meta, recordType || meta.fields);
  143. };
  144. Ext.extend(Ext.data.JsonReader, Ext.data.DataReader, {
  145.     /**
  146.      * This JsonReader's metadata as passed to the constructor, or as passed in
  147.      * the last data packet's <b><tt>metaData</tt></b> property.
  148.      * @type Mixed
  149.      * @property meta
  150.      */
  151.     /**
  152.      * This method is only used by a DataProxy which has retrieved data from a remote server.
  153.      * @param {Object} response The XHR object which contains the JSON data in its responseText.
  154.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  155.      * a cache of Ext.data.Records.
  156.      */
  157.     read : function(response){
  158.         var json = response.responseText;
  159.         var o = Ext.decode(json);
  160.         if(!o) {
  161.             throw {message: 'JsonReader.read: Json object not found'};
  162.         }
  163.         return this.readRecords(o);
  164.     },
  165.     /**
  166.      * Decode a json response from server.
  167.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  168.      * @param {Object} response
  169.      * TODO: refactor code between JsonReader#readRecords, #readResponse into 1 method.
  170.      * there's ugly duplication going on due to maintaining backwards compat. with 2.0.  It's time to do this.
  171.      */
  172.     readResponse : function(action, response) {
  173.         var o = (response.responseText !== undefined) ? Ext.decode(response.responseText) : response;
  174.         if(!o) {
  175.             throw new Ext.data.JsonReader.Error('response');
  176.         }
  177.         var root = this.getRoot(o);
  178.         if (action === Ext.data.Api.actions.create) {
  179.             var def = Ext.isDefined(root);
  180.             if (def && Ext.isEmpty(root)) {
  181.                 throw new Ext.data.JsonReader.Error('root-empty', this.meta.root);
  182.             }
  183.             else if (!def) {
  184.                 throw new Ext.data.JsonReader.Error('root-undefined-response', this.meta.root);
  185.             }
  186.         }
  187.         // instantiate response object
  188.         var res = new Ext.data.Response({
  189.             action: action,
  190.             success: this.getSuccess(o),
  191.             data: (root) ? this.extractData(root, false) : [],
  192.             message: this.getMessage(o),
  193.             raw: o
  194.         });
  195.         // blow up if no successProperty
  196.         if (Ext.isEmpty(res.success)) {
  197.             throw new Ext.data.JsonReader.Error('successProperty-response', this.meta.successProperty);
  198.         }
  199.         return res;
  200.     },
  201.     /**
  202.      * Create a data block containing Ext.data.Records from a JSON object.
  203.      * @param {Object} o An object which contains an Array of row objects in the property specified
  204.      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
  205.      * which contains the total size of the dataset.
  206.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  207.      * a cache of Ext.data.Records.
  208.      */
  209.     readRecords : function(o){
  210.         /**
  211.          * After any data loads, the raw JSON data is available for further custom processing.  If no data is
  212.          * loaded or there is a load exception this property will be undefined.
  213.          * @type Object
  214.          */
  215.         this.jsonData = o;
  216.         if(o.metaData){
  217.             this.onMetaChange(o.metaData);
  218.         }
  219.         var s = this.meta, Record = this.recordType,
  220.             f = Record.prototype.fields, fi = f.items, fl = f.length, v;
  221.         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
  222.         if(s.totalProperty){
  223.             v = parseInt(this.getTotal(o), 10);
  224.             if(!isNaN(v)){
  225.                 totalRecords = v;
  226.             }
  227.         }
  228.         if(s.successProperty){
  229.             v = this.getSuccess(o);
  230.             if(v === false || v === 'false'){
  231.                 success = false;
  232.             }
  233.         }
  234.         // TODO return Ext.data.Response instance instead.  @see #readResponse
  235.         return {
  236.             success : success,
  237.             records : this.extractData(root, true), // <-- true to return [Ext.data.Record]
  238.             totalRecords : totalRecords
  239.         };
  240.     },
  241.     // private
  242.     buildExtractors : function() {
  243.         if(this.ef){
  244.             return;
  245.         }
  246.         var s = this.meta, Record = this.recordType,
  247.             f = Record.prototype.fields, fi = f.items, fl = f.length;
  248.         if(s.totalProperty) {
  249.             this.getTotal = this.createAccessor(s.totalProperty);
  250.         }
  251.         if(s.successProperty) {
  252.             this.getSuccess = this.createAccessor(s.successProperty);
  253.         }
  254.         if (s.messageProperty) {
  255.             this.getMessage = this.createAccessor(s.messageProperty);
  256.         }
  257.         this.getRoot = s.root ? this.createAccessor(s.root) : function(p){return p;};
  258.         if (s.id || s.idProperty) {
  259.             var g = this.createAccessor(s.id || s.idProperty);
  260.             this.getId = function(rec) {
  261.                 var r = g(rec);
  262.                 return (r === undefined || r === '') ? null : r;
  263.             };
  264.         } else {
  265.             this.getId = function(){return null;};
  266.         }
  267.         var ef = [];
  268.         for(var i = 0; i < fl; i++){
  269.             f = fi[i];
  270.             var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
  271.             ef.push(this.createAccessor(map));
  272.         }
  273.         this.ef = ef;
  274.     },
  275.     /**
  276.      * @ignore
  277.      * TODO This isn't used anywhere??  Don't we want to use this where possible instead of complex #createAccessor?
  278.      */
  279.     simpleAccess : function(obj, subsc) {
  280.         return obj[subsc];
  281.     },
  282.     /**
  283.      * @ignore
  284.      */
  285.     createAccessor : function(){
  286.         var re = /[[.]/;
  287.         return function(expr) {
  288.             try {
  289.                 return(re.test(expr)) ?
  290.                 new Function('obj', 'return obj.' + expr) :
  291.                 function(obj){
  292.                     return obj[expr];
  293.                 };
  294.             } catch(e){}
  295.             return Ext.emptyFn;
  296.         };
  297.     }(),
  298.     /**
  299.      * type-casts a single row of raw-data from server
  300.      * @param {Object} data
  301.      * @param {Array} items
  302.      * @param {Integer} len
  303.      * @private
  304.      */
  305.     extractValues : function(data, items, len) {
  306.         var f, values = {};
  307.         for(var j = 0; j < len; j++){
  308.             f = items[j];
  309.             var v = this.ef[j](data);
  310.             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue, data);
  311.         }
  312.         return values;
  313.     }
  314. });
  315. /**
  316.  * @class Ext.data.JsonReader.Error
  317.  * Error class for JsonReader
  318.  */
  319. Ext.data.JsonReader.Error = Ext.extend(Ext.Error, {
  320.     constructor : function(message, arg) {
  321.         this.arg = arg;
  322.         Ext.Error.call(this, message);
  323.     },
  324.     name : 'Ext.data.JsonReader'
  325. });
  326. Ext.apply(Ext.data.JsonReader.Error.prototype, {
  327.     lang: {
  328.         'response': 'An error occurred while json-decoding your server response',
  329.         '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.',
  330.         '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.',
  331.         '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.',
  332.         'root-empty': '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.'
  333.     }
  334. });