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

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.data.DirectProxy
  3.  * @extends Ext.data.DataProxy
  4.  */
  5. Ext.data.DirectProxy = function(config){
  6.     Ext.apply(this, config);
  7.     if(typeof this.paramOrder == 'string'){
  8.         this.paramOrder = this.paramOrder.split(/[s,|]/);
  9.     }
  10.     Ext.data.DirectProxy.superclass.constructor.call(this, config);
  11. };
  12. Ext.extend(Ext.data.DirectProxy, Ext.data.DataProxy, {
  13.     /**
  14.      * @cfg {Array/String} paramOrder Defaults to <tt>undefined</tt>. A list of params to be executed
  15.      * server side.  Specify the params in the order in which they must be executed on the server-side
  16.      * as either (1) an Array of String values, or (2) a String of params delimited by either whitespace,
  17.      * comma, or pipe. For example,
  18.      * any of the following would be acceptable:<pre><code>
  19. paramOrder: ['param1','param2','param3']
  20. paramOrder: 'param1 param2 param3'
  21. paramOrder: 'param1,param2,param3'
  22. paramOrder: 'param1|param2|param'
  23.      </code></pre>
  24.      */
  25.     paramOrder: undefined,
  26.     /**
  27.      * @cfg {Boolean} paramsAsHash
  28.      * Send parameters as a collection of named arguments (defaults to <tt>true</tt>). Providing a
  29.      * <tt>{@link #paramOrder}</tt> nullifies this configuration.
  30.      */
  31.     paramsAsHash: true,
  32.     /**
  33.      * @cfg {Function} directFn
  34.      * Function to call when executing a request.  directFn is a simple alternative to defining the api configuration-parameter
  35.      * for Store's which will not implement a full CRUD api.
  36.      */
  37.     directFn : undefined,
  38.     // protected
  39.     doRequest : function(action, rs, params, reader, callback, scope, options) {
  40.         var args = [];
  41.         var directFn = this.api[action] || this.directFn;
  42.         switch (action) {
  43.             case Ext.data.Api.actions.create:
  44.                 args.push(params[reader.meta.root]); // <-- create(Hash)
  45.                 break;
  46.             case Ext.data.Api.actions.read:
  47.                 if(this.paramOrder){
  48.                     for(var i = 0, len = this.paramOrder.length; i < len; i++){
  49.                         args.push(params[this.paramOrder[i]]);
  50.                     }
  51.                 }else if(this.paramsAsHash){
  52.                     args.push(params);
  53.                 }
  54.                 break;
  55.             case Ext.data.Api.actions.update:
  56.                 args.push(params[reader.meta.idProperty]);  // <-- save(Integer/Integer[], Hash/Hash[])
  57.                 args.push(params[reader.meta.root]);
  58.                 break;
  59.             case Ext.data.Api.actions.destroy:
  60.                 args.push(params[reader.meta.root]);        // <-- destroy(Int/Int[])
  61.                 break;
  62.         }
  63.         var trans = {
  64.             params : params || {},
  65.             callback : callback,
  66.             scope : scope,
  67.             arg : options,
  68.             reader: reader
  69.         };
  70.         args.push(this.createCallback(action, rs, trans), this);
  71.         directFn.apply(window, args);
  72.     },
  73.     // private
  74.     createCallback : function(action, rs, trans) {
  75.         return function(result, res) {
  76.             if (!res.status) {
  77.                 // @deprecated fire loadexception
  78.                 if (action === Ext.data.Api.actions.read) {
  79.                     this.fireEvent("loadexception", this, trans, res, null);
  80.                 }
  81.                 this.fireEvent('exception', this, 'remote', action, trans, res, null);
  82.                 trans.callback.call(trans.scope, null, trans.arg, false);
  83.                 return;
  84.             }
  85.             if (action === Ext.data.Api.actions.read) {
  86.                 this.onRead(action, trans, result, res);
  87.             } else {
  88.                 this.onWrite(action, trans, result, res, rs);
  89.             }
  90.         };
  91.     },
  92.     /**
  93.      * Callback for read actions
  94.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  95.      * @param {Object} trans The request transaction object
  96.      * @param {Object} res The server response
  97.      * @private
  98.      */
  99.     onRead : function(action, trans, result, res) {
  100.         var records;
  101.         try {
  102.             records = trans.reader.readRecords(result);
  103.         }
  104.         catch (ex) {
  105.             // @deprecated: Fire old loadexception for backwards-compat.
  106.             this.fireEvent("loadexception", this, trans, res, ex);
  107.             this.fireEvent('exception', this, 'response', action, trans, res, ex);
  108.             trans.callback.call(trans.scope, null, trans.arg, false);
  109.             return;
  110.         }
  111.         this.fireEvent("load", this, res, trans.arg);
  112.         trans.callback.call(trans.scope, records, trans.arg, true);
  113.     },
  114.     /**
  115.      * Callback for write actions
  116.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  117.      * @param {Object} trans The request transaction object
  118.      * @param {Object} res The server response
  119.      * @private
  120.      */
  121.     onWrite : function(action, trans, result, res, rs) {
  122.         this.fireEvent("write", this, action, result, res, rs, trans.arg);
  123.         trans.callback.call(trans.scope, result, res, true);
  124.     }
  125. });