Ext.Ajax.request和Ext.lib.Ajax.getConnectionObject() 2种Ext的交互方法
1、 ?在用ext中我们除了用store的load()方法发送请求之外就是用Ext.Ajax.request了下面我来简明阐述一下它的用法:(最简单的一个请求)? ? ? ? ?Ext.Ajax.request({? ? ? ? ? ? ? ? ? url: 'FN/funAction_deleteById.action',? ? ? ? ? ? ? ? ? params: {jids:jids},? ? ? ? ? ? ? ? ? success: function(){? ? ? ? ? ? ? ? ? ? ? alert('success');? ? ? ? ? ? ? ? ? },?failure:function(){alert('fail');}});很简单:我们将上面这一段代码嵌入到程序中。例如一个fun中。当我们执行这个fun的时候。这个语句就会被执行。? ? ? ? ? ?这其中url是发送请求的属性 ?params:后面的对象是参数集合。下面的参数有待测试???2、同步交互var conn = Ext.lib.Ajax.getConnectionObject().conn;? ? ?conn.open("post", url);? ? ?conn.send(null);? ? ?var responseArray = Ext.util.JSON.decode(conn.responseText);? ? ?var c_combo_code = responseArray.combo_code;Ext.lib.Ajax.getConnectionObject().conn:获取连接Ext.util.JSON.decode(conn.responseText):用于取得提交后后台返回的Json化的变量