ExtJs 4.1:如何使用Ext.Ajax.request()在请求体中发送json数据?

前端之家收集整理的这篇文章主要介绍了ExtJs 4.1:如何使用Ext.Ajax.request()在请求体中发送json数据?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用Ext.Ajax.request()发送json数据,然后在ASP.NET中使用Request.InputStream访问它,它是请求体的内容.我需要一种方法来告诉ExtJs在使用Ext.data.proxy.Ajax时,在请求正文中写入数据.
指定POST方法,只需使用请求的jsonData配置:
Ext.Ajax.request({
    url: 'myUrl',method: 'POST',params: {
        requestParam: 'notInRequestBody'
    },jsonData: 'thisIsInRequestBody',success: function() {
        console.log('success');
    },failure: function() {
        console.log('woops');
    }
});

如果你想要一个写为JSON的记录,你也可以使用这样的JSON作者.

var writer = Ext.create('Ext.data.writer.Json'),record = Ext.getStore('SomeStoreID').first();

Ext.Ajax.request({
    url: 'myUrl',jsonData: writer.getRecordData(record),failure: function() {
        console.log('woops');
    }
});
原文链接:https://www.f2er.com/ajax/159851.html

猜你在找的Ajax相关文章