|
0
|
| Hari prasad kasavajjala · 技术社区 · 8 年前 |
|
|
1
1
我通常使用Ext.Ajax来实现这一点,如下所示:
Ext.Ajax.request({
url: 'YourUrl',
params: {
some_param: 'some_value'
},
success: function(response, opts) {
//Horay, Do something with the response
},
failure: function(response, opts) {
//Oh nooooo
}
});
外部文档: http://docs.sencha.com/extjs/6.0.2/classic/Ext.Ajax.html |
|
|
2
0
AJAX请求后得到的是JSON,JSON是一个对象,您无法简单地获得该对象的值。 |
|
|
harunB10 · Sencha未被识别为内部或外部命令 8 年前 |
|
|
Y.Rad · 如何在特定位置添加项目 8 年前 |
|
|
jenkelblankel · 绑定按钮在Ext JS中不起作用 8 年前 |
|
|
Hemant · 如何将onkeyup事件用于文本字段? 8 年前 |
|
|
Zoti · 具有无限滚动的extjs 6现代组合框 8 年前 |
|
|
Vikas Hire · 在其存储更新中更新extjs图表配置 8 年前 |