EXTJS-简单的ajax请求,带有回调和json到对象的反序列化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EXTJS-简单的ajax请求,带有回调和json到对象的反序列化相关的知识,希望对你有一定的参考价值。

  1.  
  2. /**
  3. * Simple ajax request with callback and json to object deserialization
  4. */
  5.  
  6. simpleAjax = function () {
  7.  
  8. var received = function (response) {
  9. x = Ext.decode( response.responseText );
  10. //console.log(x);
  11. console.log(this);
  12. }
  13.  
  14. Ext.Ajax.request({
  15. url: '/files/ux/RemoteComponent/implementation4/grid_generated.php',
  16. success: received,
  17. failure: function () { console.log('failure');},
  18. headers: {
  19. 'my-header': 'foo'
  20. },
  21. params: { foo: 'bar' }
  22. });
  23.  
  24. } // eo function

以上是关于EXTJS-简单的ajax请求,带有回调和json到对象的反序列化的主要内容,如果未能解决你的问题,请参考以下文章

什么是ajax回调函数,简单理解

ExtJS 4 存储回调函数不获取记录

EXTJS Ajax请求中文乱码

哈哈,找到一种方式来简单模拟EXTJS中与服务器的AJAX交互啦。

Extjs 回调函数到控制器

如何使用 jQuery 在 JSON ajax 请求中回调 404 上的函数?