我想在ExtJS中创建自己的ajax代理。我有代理类的子类:
Ext.define('Ext.util.proxy.MyProxy', {
extend : 'Ext.data.proxy.Server',
...
我压倒了doRequest
doRequest : function(operation, callback, scope) {
然后我正在制作标准的$ .ajax电话。
我的问题:我该如何处理回复?我认为它需要处理操作对象,但还没有找到需要做什么的清晰描述。这不起作用:
operation.commitRecords(result.records);
operation.setCompleted();
operation.setSuccessful();