代码如下:
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 文档工作,但在 request-header
Content-Type application/x-www-form-urlencoded,text/javascript; charset=UTF-8
这会导致问题,因为我的服务器需要application/json
格式而不是格式的发布数据application/x-www-form-urlencoded
我也在 ext-forums 上搜索过这个,但无法正常工作。
我的代码中是否有问题或其在 extjs 中的错误?
请帮忙。