How to add header as parameter in ajax call rest web service request in sencha touch -
can tell how add header parameter in ajax call rest web service request in sencha touch
thanks
here how can add header in sencha touch ajax call,
ext.ajax.request({    url: 'myurl',     headers: {       "content-type": "application/json"    },     callback: function(options, success, response) {       console.log(response.responsetext);    } }); 
Comments
Post a Comment