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

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.data.DataProxy
  3.  * @extends Ext.util.Observable
  4.  * <p>Abstract base class for implementations which provide retrieval of unformatted data objects.
  5.  * This class is intended to be extended and should not be created directly. For existing implementations,
  6.  * see {@link Ext.data.DirectProxy}, {@link Ext.data.HttpProxy}, {@link Ext.data.ScriptTagProxy} and
  7.  * {@link Ext.data.MemoryProxy}.</p>
  8.  * <p>DataProxy implementations are usually used in conjunction with an implementation of {@link Ext.data.DataReader}
  9.  * (of the appropriate type which knows how to parse the data object) to provide a block of
  10.  * {@link Ext.data.Records} to an {@link Ext.data.Store}.</p>
  11.  * <p>The parameter to a DataProxy constructor may be an {@link Ext.data.Connection} or can also be the
  12.  * config object to an {@link Ext.data.Connection}.</p>
  13.  * <p>Custom implementations must implement either the <code><b>doRequest</b></code> method (preferred) or the
  14.  * <code>load</code> method (deprecated). See
  15.  * {@link Ext.data.HttpProxy}.{@link Ext.data.HttpProxy#doRequest doRequest} or
  16.  * {@link Ext.data.HttpProxy}.{@link Ext.data.HttpProxy#load load} for additional details.</p>
  17.  * <p><b><u>Example 1</u></b></p>
  18.  * <pre><code>
  19. proxy: new Ext.data.ScriptTagProxy({
  20.     {@link Ext.data.Connection#url url}: 'http://extjs.com/forum/topics-remote.php'
  21. }),
  22.  * </code></pre>
  23.  * <p><b><u>Example 2</u></b></p>
  24.  * <pre><code>
  25. proxy : new Ext.data.HttpProxy({
  26.     {@link Ext.data.Connection#method method}: 'GET',
  27.     {@link Ext.data.HttpProxy#prettyUrls prettyUrls}: false,
  28.     {@link Ext.data.Connection#url url}: 'local/default.php', // see options parameter for {@link Ext.Ajax#request}
  29.     {@link #api}: {
  30.         // all actions except the following will use above url
  31.         create  : 'local/new.php',
  32.         update  : 'local/update.php'
  33.     }
  34. }),
  35.  * </code></pre>
  36.  * <p>And <b>new in Ext version 3</b>, attach centralized event-listeners upon the DataProxy class itself!  This is a great place
  37.  * to implement a <i>messaging system</i> to centralize your application's user-feedback and error-handling.</p>
  38.  * <pre><code>
  39. // Listen to all "beforewrite" event fired by all proxies.
  40. Ext.data.DataProxy.on('beforewrite', function(proxy, action) {
  41.     console.log('beforewrite: ', action);
  42. });
  43. // Listen to "write" event fired by all proxies
  44. Ext.data.DataProxy.on('write', function(proxy, action, data, res, rs) {
  45.     console.info('write: ', action);
  46. });
  47. // Listen to "exception" event fired by all proxies
  48. Ext.data.DataProxy.on('exception', function(proxy, type, action) {
  49.     console.error(type + action + ' exception);
  50. });
  51.  * </code></pre>
  52.  * <b>Note:</b> These three events are all fired with the signature of the corresponding <i>DataProxy instance</i> event {@link #beforewrite beforewrite}, {@link #write write} and {@link #exception exception}.
  53.  */
  54. Ext.data.DataProxy = function(conn){
  55.     // make sure we have a config object here to support ux proxies.
  56.     // All proxies should now send config into superclass constructor.
  57.     conn = conn || {};
  58.     // This line caused a bug when people use custom Connection object having its own request method.
  59.     // http://extjs.com/forum/showthread.php?t=67194.  Have to set DataProxy config
  60.     //Ext.applyIf(this, conn);
  61.     this.api     = conn.api;
  62.     this.url     = conn.url;
  63.     this.restful = conn.restful;
  64.     this.listeners = conn.listeners;
  65.     // deprecated
  66.     this.prettyUrls = conn.prettyUrls;
  67.     /**
  68.      * @cfg {Object} api
  69.      * Specific urls to call on CRUD action methods "read", "create", "update" and "destroy".
  70.      * Defaults to:<pre><code>
  71. api: {
  72.     read    : undefined,
  73.     create  : undefined,
  74.     update  : undefined,
  75.     destroy : undefined
  76. }
  77.      * </code></pre>
  78.      * <p>The url is built based upon the action being executed <tt>[load|create|save|destroy]</tt>
  79.      * using the commensurate <tt>{@link #api}</tt> property, or if undefined default to the
  80.      * configured {@link Ext.data.Store}.{@link Ext.data.Store#url url}.</p><br>
  81.      * <p>For example:</p>
  82.      * <pre><code>
  83. api: {
  84.     load :    '/controller/load',
  85.     create :  '/controller/new',  // Server MUST return idProperty of new record
  86.     save :    '/controller/update',
  87.     destroy : '/controller/destroy_action'
  88. }
  89. // Alternatively, one can use the object-form to specify each API-action
  90. api: {
  91.     load: {url: 'read.php', method: 'GET'},
  92.     create: 'create.php',
  93.     destroy: 'destroy.php',
  94.     save: 'update.php'
  95. }
  96.      * </code></pre>
  97.      * <p>If the specific URL for a given CRUD action is undefined, the CRUD action request
  98.      * will be directed to the configured <tt>{@link Ext.data.Connection#url url}</tt>.</p>
  99.      * <br><p><b>Note</b>: To modify the URL for an action dynamically the appropriate API
  100.      * property should be modified before the action is requested using the corresponding before
  101.      * action event.  For example to modify the URL associated with the load action:
  102.      * <pre><code>
  103. // modify the url for the action
  104. myStore.on({
  105.     beforeload: {
  106.         fn: function (store, options) {
  107.             // use <tt>{@link Ext.data.HttpProxy#setUrl setUrl}</tt> to change the URL for *just* this request.
  108.             store.proxy.setUrl('changed1.php');
  109.             // set optional second parameter to true to make this URL change
  110.             // permanent, applying this URL for all subsequent requests.
  111.             store.proxy.setUrl('changed1.php', true);
  112.             // Altering the proxy API should be done using the public
  113.             // method <tt>{@link Ext.data.DataProxy#setApi setApi}</tt>.
  114.             store.proxy.setApi('read', 'changed2.php');
  115.             // Or set the entire API with a config-object.
  116.             // When using the config-object option, you must redefine the <b>entire</b>
  117.             // API -- not just a specific action of it.
  118.             store.proxy.setApi({
  119.                 read    : 'changed_read.php',
  120.                 create  : 'changed_create.php',
  121.                 update  : 'changed_update.php',
  122.                 destroy : 'changed_destroy.php'
  123.             });
  124.         }
  125.     }
  126. });
  127.      * </code></pre>
  128.      * </p>
  129.      */
  130.     this.addEvents(
  131.         /**
  132.          * @event exception
  133.          * <p>Fires if an exception occurs in the Proxy during a remote request. This event is relayed
  134.          * through a corresponding {@link Ext.data.Store}.{@link Ext.data.Store#exception exception},
  135.          * so any Store instance may observe this event.</p>
  136.          * <p>In addition to being fired through the DataProxy instance that raised the event, this event is also fired
  137.          * through the Ext.data.DataProxy <i>class</i> to allow for centralized processing of exception events from <b>all</b>
  138.          * DataProxies by attaching a listener to the Ext.data.Proxy class itself.</p>
  139.          * <p>This event can be fired for one of two reasons:</p>
  140.          * <div class="mdetail-params"><ul>
  141.          * <li>remote-request <b>failed</b> : <div class="sub-desc">
  142.          * The server did not return status === 200.
  143.          * </div></li>
  144.          * <li>remote-request <b>succeeded</b> : <div class="sub-desc">
  145.          * The remote-request succeeded but the reader could not read the response.
  146.          * This means the server returned data, but the configured Reader threw an
  147.          * error while reading the response.  In this case, this event will be
  148.          * raised and the caught error will be passed along into this event.
  149.          * </div></li>
  150.          * </ul></div>
  151.          * <br><p>This event fires with two different contexts based upon the 2nd
  152.          * parameter <tt>type [remote|response]</tt>.  The first four parameters
  153.          * are identical between the two contexts -- only the final two parameters
  154.          * differ.</p>
  155.          * @param {DataProxy} this The proxy that sent the request
  156.          * @param {String} type
  157.          * <p>The value of this parameter will be either <tt>'response'</tt> or <tt>'remote'</tt>.</p>
  158.          * <div class="mdetail-params"><ul>
  159.          * <li><b><tt>'response'</tt></b> : <div class="sub-desc">
  160.          * <p>An <b>invalid</b> response from the server was returned: either 404,
  161.          * 500 or the response meta-data does not match that defined in the DataReader
  162.          * (e.g.: root, idProperty, successProperty).</p>
  163.          * </div></li>
  164.          * <li><b><tt>'remote'</tt></b> : <div class="sub-desc">
  165.          * <p>A <b>valid</b> response was returned from the server having
  166.          * successProperty === false.  This response might contain an error-message
  167.          * sent from the server.  For example, the user may have failed
  168.          * authentication/authorization or a database validation error occurred.</p>
  169.          * </div></li>
  170.          * </ul></div>
  171.          * @param {String} action Name of the action (see {@link Ext.data.Api#actions}.
  172.          * @param {Object} options The options for the action that were specified in the {@link #request}.
  173.          * @param {Object} response
  174.          * <p>The value of this parameter depends on the value of the <code>type</code> parameter:</p>
  175.          * <div class="mdetail-params"><ul>
  176.          * <li><b><tt>'response'</tt></b> : <div class="sub-desc">
  177.          * <p>The raw browser response object (e.g.: XMLHttpRequest)</p>
  178.          * </div></li>
  179.          * <li><b><tt>'remote'</tt></b> : <div class="sub-desc">
  180.          * <p>The decoded response object sent from the server.</p>
  181.          * </div></li>
  182.          * </ul></div>
  183.          * @param {Mixed} arg
  184.          * <p>The type and value of this parameter depends on the value of the <code>type</code> parameter:</p>
  185.          * <div class="mdetail-params"><ul>
  186.          * <li><b><tt>'response'</tt></b> : Error<div class="sub-desc">
  187.          * <p>The JavaScript Error object caught if the configured Reader could not read the data.
  188.          * If the remote request returns success===false, this parameter will be null.</p>
  189.          * </div></li>
  190.          * <li><b><tt>'remote'</tt></b> : Record/Record[]<div class="sub-desc">
  191.          * <p>This parameter will only exist if the <tt>action</tt> was a <b>write</b> action
  192.          * (Ext.data.Api.actions.create|update|destroy).</p>
  193.          * </div></li>
  194.          * </ul></div>
  195.          */
  196.         'exception',
  197.         /**
  198.          * @event beforeload
  199.          * Fires before a request to retrieve a data object.
  200.          * @param {DataProxy} this The proxy for the request
  201.          * @param {Object} params The params object passed to the {@link #request} function
  202.          */
  203.         'beforeload',
  204.         /**
  205.          * @event load
  206.          * Fires before the load method's callback is called.
  207.          * @param {DataProxy} this The proxy for the request
  208.          * @param {Object} o The request transaction object
  209.          * @param {Object} options The callback's <tt>options</tt> property as passed to the {@link #request} function
  210.          */
  211.         'load',
  212.         /**
  213.          * @event loadexception
  214.          * <p>This event is <b>deprecated</b>.  The signature of the loadexception event
  215.          * varies depending on the proxy, use the catch-all {@link #exception} event instead.
  216.          * This event will fire in addition to the {@link #exception} event.</p>
  217.          * @param {misc} misc See {@link #exception}.
  218.          * @deprecated
  219.          */
  220.         'loadexception',
  221.         /**
  222.          * @event beforewrite
  223.          * <p>Fires before a request is generated for one of the actions Ext.data.Api.actions.create|update|destroy</p>
  224.          * <p>In addition to being fired through the DataProxy instance that raised the event, this event is also fired
  225.          * through the Ext.data.DataProxy <i>class</i> to allow for centralized processing of beforewrite events from <b>all</b>
  226.          * DataProxies by attaching a listener to the Ext.data.Proxy class itself.</p>
  227.          * @param {DataProxy} this The proxy for the request
  228.          * @param {String} action [Ext.data.Api.actions.create|update|destroy]
  229.          * @param {Record/Array[Record]} rs The Record(s) to create|update|destroy.
  230.          * @param {Object} params The request <code>params</code> object.  Edit <code>params</code> to add parameters to the request.
  231.          */
  232.         'beforewrite',
  233.         /**
  234.          * @event write
  235.          * <p>Fires before the request-callback is called</p>
  236.          * <p>In addition to being fired through the DataProxy instance that raised the event, this event is also fired
  237.          * through the Ext.data.DataProxy <i>class</i> to allow for centralized processing of write events from <b>all</b>
  238.          * DataProxies by attaching a listener to the Ext.data.Proxy class itself.</p>
  239.          * @param {DataProxy} this The proxy that sent the request
  240.          * @param {String} action [Ext.data.Api.actions.create|upate|destroy]
  241.          * @param {Object} data The data object extracted from the server-response
  242.          * @param {Object} response The decoded response from server
  243.          * @param {Record/Record{}} rs The records from Store
  244.          * @param {Object} options The callback's <tt>options</tt> property as passed to the {@link #request} function
  245.          */
  246.         'write'
  247.     );
  248.     Ext.data.DataProxy.superclass.constructor.call(this);
  249.     // Prepare the proxy api.  Ensures all API-actions are defined with the Object-form.
  250.     try {
  251.         Ext.data.Api.prepare(this);
  252.     } catch (e) {
  253.         if (e instanceof Ext.data.Api.Error) {
  254.             e.toConsole();
  255.         }
  256.     }
  257.     // relay each proxy's events onto Ext.data.DataProxy class for centralized Proxy-listening
  258.     Ext.data.DataProxy.relayEvents(this, ['beforewrite', 'write', 'exception']);
  259. };
  260. Ext.extend(Ext.data.DataProxy, Ext.util.Observable, {
  261.     /**
  262.      * @cfg {Boolean} restful
  263.      * <p>Defaults to <tt>false</tt>.  Set to <tt>true</tt> to operate in a RESTful manner.</p>
  264.      * <br><p> Note: this parameter will automatically be set to <tt>true</tt> if the
  265.      * {@link Ext.data.Store} it is plugged into is set to <code>restful: true</code>. If the
  266.      * Store is RESTful, there is no need to set this option on the proxy.</p>
  267.      * <br><p>RESTful implementations enable the serverside framework to automatically route
  268.      * actions sent to one url based upon the HTTP method, for example:
  269.      * <pre><code>
  270. store: new Ext.data.Store({
  271.     restful: true,
  272.     proxy: new Ext.data.HttpProxy({url:'/users'}); // all requests sent to /users
  273.     ...
  274. )}
  275.      * </code></pre>
  276.      * If there is no <code>{@link #api}</code> specified in the configuration of the proxy,
  277.      * all requests will be marshalled to a single RESTful url (/users) so the serverside
  278.      * framework can inspect the HTTP Method and act accordingly:
  279.      * <pre>
  280. <u>Method</u>   <u>url</u>        <u>action</u>
  281. POST     /users     create
  282. GET      /users     read
  283. PUT      /users/23  update
  284. DESTROY  /users/23  delete
  285.      * </pre></p>
  286.      * <p>If set to <tt>true</tt>, a {@link Ext.data.Record#phantom non-phantom} record's
  287.      * {@link Ext.data.Record#id id} will be appended to the url. Some MVC (e.g., Ruby on Rails,
  288.      * Merb and Django) support segment based urls where the segments in the URL follow the
  289.      * Model-View-Controller approach:<pre><code>
  290.      * someSite.com/controller/action/id
  291.      * </code></pre>
  292.      * Where the segments in the url are typically:<div class="mdetail-params"><ul>
  293.      * <li>The first segment : represents the controller class that should be invoked.</li>
  294.      * <li>The second segment : represents the class function, or method, that should be called.</li>
  295.      * <li>The third segment : represents the ID (a variable typically passed to the method).</li>
  296.      * </ul></div></p>
  297.      * <br><p>Refer to <code>{@link Ext.data.DataProxy#api}</code> for additional information.</p>
  298.      */
  299.     restful: false,
  300.     /**
  301.      * <p>Redefines the Proxy's API or a single action of an API. Can be called with two method signatures.</p>
  302.      * <p>If called with an object as the only parameter, the object should redefine the <b>entire</b> API, e.g.:</p><pre><code>
  303. proxy.setApi({
  304.     read    : '/users/read',
  305.     create  : '/users/create',
  306.     update  : '/users/update',
  307.     destroy : '/users/destroy'
  308. });
  309. </code></pre>
  310.      * <p>If called with two parameters, the first parameter should be a string specifying the API action to
  311.      * redefine and the second parameter should be the URL (or function if using DirectProxy) to call for that action, e.g.:</p><pre><code>
  312. proxy.setApi(Ext.data.Api.actions.read, '/users/new_load_url');
  313. </code></pre>
  314.      * @param {String/Object} api An API specification object, or the name of an action.
  315.      * @param {String/Function} url The URL (or function if using DirectProxy) to call for the action.
  316.      */
  317.     setApi : function() {
  318.         if (arguments.length == 1) {
  319.             var valid = Ext.data.Api.isValid(arguments[0]);
  320.             if (valid === true) {
  321.                 this.api = arguments[0];
  322.             }
  323.             else {
  324.                 throw new Ext.data.Api.Error('invalid', valid);
  325.             }
  326.         }
  327.         else if (arguments.length == 2) {
  328.             if (!Ext.data.Api.isAction(arguments[0])) {
  329.                 throw new Ext.data.Api.Error('invalid', arguments[0]);
  330.             }
  331.             this.api[arguments[0]] = arguments[1];
  332.         }
  333.         Ext.data.Api.prepare(this);
  334.     },
  335.     /**
  336.      * Returns true if the specified action is defined as a unique action in the api-config.
  337.      * request.  If all API-actions are routed to unique urls, the xaction parameter is unecessary.  However, if no api is defined
  338.      * and all Proxy actions are routed to DataProxy#url, the server-side will require the xaction parameter to perform a switch to
  339.      * the corresponding code for CRUD action.
  340.      * @param {String [Ext.data.Api.CREATE|READ|UPDATE|DESTROY]} action
  341.      * @return {Boolean}
  342.      */
  343.     isApiAction : function(action) {
  344.         return (this.api[action]) ? true : false;
  345.     },
  346.     /**
  347.      * All proxy actions are executed through this method.  Automatically fires the "before" + action event
  348.      * @param {String} action Name of the action
  349.      * @param {Ext.data.Record/Ext.data.Record[]/null} rs Will be null when action is 'load'
  350.      * @param {Object} params
  351.      * @param {Ext.data.DataReader} reader
  352.      * @param {Function} callback
  353.      * @param {Object} scope The scope (<code>this</code> reference) in which the callback function is executed. Defaults to the Proxy object.
  354.      * @param {Object} options Any options specified for the action (e.g. see {@link Ext.data.Store#load}.
  355.      */
  356.     request : function(action, rs, params, reader, callback, scope, options) {
  357.         if (!this.api[action] && !this.load) {
  358.             throw new Ext.data.DataProxy.Error('action-undefined', action);
  359.         }
  360.         params = params || {};
  361.         if ((action === Ext.data.Api.actions.read) ? this.fireEvent("beforeload", this, params) : this.fireEvent("beforewrite", this, action, rs, params) !== false) {
  362.             this.doRequest.apply(this, arguments);
  363.         }
  364.         else {
  365.             callback.call(scope || this, null, options, false);
  366.         }
  367.     },
  368.     /**
  369.      * <b>Deprecated</b> load method using old method signature. See {@doRequest} for preferred method.
  370.      * @deprecated
  371.      * @param {Object} params
  372.      * @param {Object} reader
  373.      * @param {Object} callback
  374.      * @param {Object} scope
  375.      * @param {Object} arg
  376.      */
  377.     load : null,
  378.     /**
  379.      * @cfg {Function} doRequest Abstract method that should be implemented in all subclasses.  <b>Note:</b> Should only be used by custom-proxy developers.
  380.      * (e.g.: {@link Ext.data.HttpProxy#doRequest HttpProxy.doRequest},
  381.      * {@link Ext.data.DirectProxy#doRequest DirectProxy.doRequest}).
  382.      */
  383.     doRequest : function(action, rs, params, reader, callback, scope, options) {
  384.         // default implementation of doRequest for backwards compatibility with 2.0 proxies.
  385.         // If we're executing here, the action is probably "load".
  386.         // Call with the pre-3.0 method signature.
  387.         this.load(params, reader, callback, scope, options);
  388.     },
  389.     /**
  390.      * @cfg {Function} onRead Abstract method that should be implemented in all subclasses.  <b>Note:</b> Should only be used by custom-proxy developers.  Callback for read {@link Ext.data.Api#actions action}.
  391.      * @param {String} action Action name as per {@link Ext.data.Api.actions#read}.
  392.      * @param {Object} o The request transaction object
  393.      * @param {Object} res The server response
  394.      * @fires loadexception (deprecated)
  395.      * @fires exception
  396.      * @fires load
  397.      * @protected
  398.      */
  399.     onRead : Ext.emptyFn,
  400.     /**
  401.      * @cfg {Function} onWrite Abstract method that should be implemented in all subclasses.  <b>Note:</b> Should only be used by custom-proxy developers.  Callback for <i>create, update and destroy</i> {@link Ext.data.Api#actions actions}.
  402.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  403.      * @param {Object} trans The request transaction object
  404.      * @param {Object} res The server response
  405.      * @fires exception
  406.      * @fires write
  407.      * @protected
  408.      */
  409.     onWrite : Ext.emptyFn,
  410.     /**
  411.      * buildUrl
  412.      * Sets the appropriate url based upon the action being executed.  If restful is true, and only a single record is being acted upon,
  413.      * url will be built Rails-style, as in "/controller/action/32".  restful will aply iff the supplied record is an
  414.      * instance of Ext.data.Record rather than an Array of them.
  415.      * @param {String} action The api action being executed [read|create|update|destroy]
  416.      * @param {Ext.data.Record/Array[Ext.data.Record]} The record or Array of Records being acted upon.
  417.      * @return {String} url
  418.      * @private
  419.      */
  420.     buildUrl : function(action, record) {
  421.         record = record || null;
  422.         // conn.url gets nullified after each request.  If it's NOT null here, that means the user must have intervened with a call
  423.         // to DataProxy#setUrl or DataProxy#setApi and changed it before the request was executed.  If that's the case, use conn.url,
  424.         // otherwise, build the url from the api or this.url.
  425.         var url = (this.conn && this.conn.url) ? this.conn.url : (this.api[action]) ? this.api[action].url : this.url;
  426.         if (!url) {
  427.             throw new Ext.data.Api.Error('invalid-url', action);
  428.         }
  429.         // look for urls having "provides" suffix used in some MVC frameworks like Rails/Merb and others.  The provides suffice informs
  430.         // the server what data-format the client is dealing with and returns data in the same format (eg: application/json, application/xml, etc)
  431.         // e.g.: /users.json, /users.xml, etc.
  432.         // with restful routes, we need urls like:
  433.         // PUT /users/1.json
  434.         // DELETE /users/1.json
  435.         var provides = null;
  436.         var m = url.match(/(.*)(.json|.xml|.html)$/);
  437.         if (m) {
  438.             provides = m[2];    // eg ".json"
  439.             url      = m[1];    // eg: "/users"
  440.         }
  441.         // prettyUrls is deprectated in favor of restful-config
  442.         if ((this.restful === true || this.prettyUrls === true) && record instanceof Ext.data.Record && !record.phantom) {
  443.             url += '/' + record.id;
  444.         }
  445.         return (provides === null) ? url : url + provides;
  446.     },
  447.     /**
  448.      * Destroys the proxy by purging any event listeners and cancelling any active requests.
  449.      */
  450.     destroy: function(){
  451.         this.purgeListeners();
  452.     }
  453. });
  454. // Apply the Observable prototype to the DataProxy class so that proxy instances can relay their
  455. // events to the class.  Allows for centralized listening of all proxy instances upon the DataProxy class.
  456. Ext.apply(Ext.data.DataProxy, Ext.util.Observable.prototype);
  457. Ext.util.Observable.call(Ext.data.DataProxy);
  458. /**
  459.  * @class Ext.data.DataProxy.Error
  460.  * @extends Ext.Error
  461.  * DataProxy Error extension.
  462.  * constructor
  463.  * @param {String} name
  464.  * @param {Record/Array[Record]/Array}
  465.  */
  466. Ext.data.DataProxy.Error = Ext.extend(Ext.Error, {
  467.     constructor : function(message, arg) {
  468.         this.arg = arg;
  469.         Ext.Error.call(this, message);
  470.     },
  471.     name: 'Ext.data.DataProxy'
  472. });
  473. Ext.apply(Ext.data.DataProxy.Error.prototype, {
  474.     lang: {
  475.         'action-undefined': "DataProxy attempted to execute an API-action but found an undefined url / function.  Please review your Proxy url/api-configuration.",
  476.         'api-invalid': 'Recieved an invalid API-configuration.  Please ensure your proxy API-configuration contains only the actions from Ext.data.Api.actions.'
  477.     }
  478. });