我想使用Ext.Ajax.request()发送json数据,然后在ASP.NET中使用Request.InputStream访问它,它是请求体的内容.我需要一种方法来告诉ExtJs在使用Ext.data.proxy.Ajax时,在请求正文中写入数据.
指定POST方法,只需使用请求的jsonData配置:
原文链接:https://www.f2er.com/ajax/159851.htmlExt.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'); } });