Home > Web Front-end > JS Tutorial > The difference between Ext.FormPanel submission and Ext.Ajax.request asynchronous submission function_YUI.Ext related

The difference between Ext.FormPanel submission and Ext.Ajax.request asynchronous submission function_YUI.Ext related

WBOY
Release: 2016-05-16 18:41:59
Original
1103 people have browsed it

(1)Ext.FormPanel
f.getForm().submit({
url:"......",
params:{ XX:xx .....}
success: function (c,v,e) { //e: 触发事件
var json=Ext.decode(v.response.responseText);
},
failure:function(c,v,e){}
})

(2)Ext.Ajax.request
Ext.Ajax.request({
url:"....",
params:{XX:xx....},
success: function (v,c) {
var json=Ext.decode(v.responseText);
},
failure:function(v,c){}
})

Related labels:
ext
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template