任何人都可以告诉如何在sencha touch中的ajax call rest web服务请求中添加标头作为参数
由于
答案 0 :(得分:0)
以下是如何在sencha touch AJAX调用中添加标题,
Ext.Ajax.request({
url: 'myUrl',
headers: {
"Content-Type": "application/json"
},
callback: function(options, success, response) {
console.log(response.responseText);
}
});