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

中间件编程

开发平台:

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. });