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

中间件编程

开发平台:

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