X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..10a866c12701c0a0afd0ac85dcdcf32a421514ac:/docs/source/DirectProxy.html diff --git a/docs/source/DirectProxy.html b/docs/source/DirectProxy.html index 4e5b4cd5..a58d2f21 100644 --- a/docs/source/DirectProxy.html +++ b/docs/source/DirectProxy.html @@ -1,5 +1,6 @@
+A function to be called after the request. + * The callback is passed the following arguments:
this
reference) in which the callback function is executed. Defaults to the browser window.
+ * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
+ * @protected
+ */
doRequest : function(action, rs, params, reader, callback, scope, options) {
- var args = [];
- var directFn = this.api[action] || this.directFn;
+ var args = [],
+ directFn = this.api[action] || this.directFn;
switch (action) {
case Ext.data.Api.actions.create:
- args.push(params[reader.meta.root]); // <-- create(Hash)
+ args.push(params.jsonData); // <-- create(Hash)
break;
case Ext.data.Api.actions.read:
- if(this.paramOrder){
- for(var i = 0, len = this.paramOrder.length; i < len; i++){
- args.push(params[this.paramOrder[i]]);
+ // If the method has no parameters, ignore the paramOrder/paramsAsHash.
+ if(directFn.directCfg.method.len > 0){
+ if(this.paramOrder){
+ for(var i = 0, len = this.paramOrder.length; i < len; i++){
+ args.push(params[this.paramOrder[i]]);
+ }
+ }else if(this.paramsAsHash){
+ args.push(params);
}
- }else if(this.paramsAsHash){
- args.push(params);
}
break;
case Ext.data.Api.actions.update:
- args.push(params[reader.meta.idProperty]); // <-- save(Integer/Integer[], Hash/Hash[])
- args.push(params[reader.meta.root]);
+ args.push(params.jsonData); // <-- update(Hash/Hash[])
break;
case Ext.data.Api.actions.destroy:
- args.push(params[reader.meta.root]); // <-- destroy(Int/Int[])
+ args.push(params.jsonData); // <-- destroy(Int/Int[])
break;
}
@@ -106,12 +126,13 @@ paramOrder: 'param1|param2|param'
}
};
},
- /**
+ /**
* Callback for read actions
* @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
* @param {Object} trans The request transaction object
+ * @param {Object} result Data object picked out of the server-response.
* @param {Object} res The server response
- * @private
+ * @protected
*/
onRead : function(action, trans, result, res) {
var records;
@@ -129,16 +150,19 @@ paramOrder: 'param1|param2|param'
this.fireEvent("load", this, res, trans.request.arg);
trans.request.callback.call(trans.request.scope, records, trans.request.arg, true);
},
- /**
+ /**
* Callback for write actions
- * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
+ * @param {String} action [{@link Ext.data.Api#actions create|read|update|destroy}]
* @param {Object} trans The request transaction object
+ * @param {Object} result Data object picked out of the server-response.
* @param {Object} res The server response
- * @private
+ * @param {Ext.data.Record/[Ext.data.Record]} rs The Store resultset associated with the action.
+ * @protected
*/
onWrite : function(action, trans, result, res, rs) {
- this.fireEvent("write", this, action, result, res, rs, trans.request.arg);
- trans.request.callback.call(trans.request.scope, result, res, true);
+ var data = trans.reader.extractData(result, false);
+ this.fireEvent("write", this, action, data, res, rs, trans.request.arg);
+ trans.request.callback.call(trans.request.scope, data, res, true);
}
});