Ext.FormPanel 提交和 Ext.Ajax.request 异步提交函数的区别_YUI.Ext相关

WBOY
Release: 2016-05-16 18:41:59
Original
976 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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!