代码如下:
Ext.Ajax.request({
url: url,
method: 'POST',
headers: { 'Content-Type': 'application/json' },
jsonData: {
textMatchStyle:"substring",
fields: ["packageName","name","tableName"],
data: {_domain:null,_domainContext:{},operator:"and",criteria:[]},
limit: 40,
offset: 0
},
success: function(response) {
console.log('Success');
},// function called on success
failure: function(result) {Ext.MessageBox.alert('Error', 'Some problem occurred');},
});
这要根据ExtJS的文档工作,但在请求头
Content-Type application/x-www-form-urlencoded,text/javascript; charset=UTF-8
因为我的服务器需要在后期数据导致问题application/json
格式而不是application/x-www-form-urlencoded
我已搜查这对内线的论坛太多,但无法得到它的工作。
是否有问题在我的代码或它在ExtJS的错误吗?
请帮忙。