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

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.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.     // TODO: remove after Ext-3.0.1 release
  16.     if (this.returnJson != undefined) {
  17.         this.encode = this.returnJson;
  18.     }
  19. }
  20. Ext.extend(Ext.data.JsonWriter, Ext.data.DataWriter, {
  21.     /**
  22.      * @cfg {Boolean} returnJson <b>Deprecated, will be removed in Ext-3.0.1</b>.  Use {@link Ext.data.JsonWriter#encode} instead.
  23.      */
  24.     returnJson : undefined,
  25.     /**
  26.      * @cfg {Boolean} encode <tt>true</tt> to {@link Ext.util.JSON#encode encode} the
  27.      * {@link Ext.data.DataWriter#toHash hashed data}. Defaults to <tt>true</tt>.  When using
  28.      * {@link Ext.data.DirectProxy}, set this to <tt>false</tt> since Ext.Direct.JsonProvider will perform
  29.      * its own json-encoding.  In addition, if you're using {@link Ext.data.HttpProxy}, setting to <tt>false</tt>
  30.      * will cause HttpProxy to transmit data using the <b>jsonData</b> configuration-params of {@link Ext.Ajax#request}
  31.      * instead of <b>params</b>.  When using a {@link Ext.data.Store#restful} Store, some serverside frameworks are
  32.      * tuned to expect data through the jsonData mechanism.  In those cases, one will want to set <b>encode: <tt>false</tt></b>, as in
  33.      * let the lower-level connection object (eg: Ext.Ajax) do the encoding.
  34.      */
  35.     encode : true,
  36.     /**
  37.      * Final action of a write event.  Apply the written data-object to params.
  38.      * @param {Object} http params-object to write-to.
  39.      * @param {Object} baseParams as defined by {@link Ext.data.Store#baseParams}.  The baseParms must be encoded by the extending class, eg: {@link Ext.data.JsonWriter}, {@link Ext.data.XmlWriter}.
  40.      * @param {Object/Object[]} data Data-object representing compiled Store-recordset.
  41.      */
  42.     render : function(params, baseParams, data) {
  43.         if (this.encode === true) {
  44.             // Encode here now.
  45.             Ext.apply(params, baseParams);
  46.             params[this.meta.root] = Ext.encode(data);
  47.         } else {
  48.             // defer encoding for some other layer, probably in {@link Ext.Ajax#request}.  Place everything into "jsonData" key.
  49.             var jdata = Ext.apply({}, baseParams);
  50.             jdata[this.meta.root] = data;
  51.             params.jsonData = jdata;
  52.         }
  53.     },
  54.     /**
  55.      * Implements abstract Ext.data.DataWriter#createRecord
  56.      * @protected
  57.      * @param {Ext.data.Record} rec
  58.      * @return {Object}
  59.      */
  60.     createRecord : function(rec) {
  61.        return this.toHash(rec);
  62.     },
  63.     /**
  64.      * Implements abstract Ext.data.DataWriter#updateRecord
  65.      * @protected
  66.      * @param {Ext.data.Record} rec
  67.      * @return {Object}
  68.      */
  69.     updateRecord : function(rec) {
  70.         return this.toHash(rec);
  71.     },
  72.     /**
  73.      * Implements abstract Ext.data.DataWriter#destroyRecord
  74.      * @protected
  75.      * @param {Ext.data.Record} rec
  76.      * @return {Object}
  77.      */
  78.     destroyRecord : function(rec) {
  79.         return rec.id;
  80.     }
  81. });