如何在 ajax 中添加 header 作为参数在 sencha touch 中调用 rest web 服务请求

How to add header as parameter in ajax call rest web service request in sencha touch

谁能告诉我如何在 ajax 中添加 header 作为参数,在 sencha touch 中调用 rest web 服务请求

谢谢

以下是如何在 sencha touch AJAX 调用中添加 header,

Ext.Ajax.request({
   url: 'myUrl',

   headers: {
      "Content-Type": "application/json"
   },

   callback: function(options, success, response) {
      console.log(response.responseText);
   }
});