Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:15
Show Gist options
  • Save ezhov-da/01bb58811fa4292fdc472f054e546c63 to your computer and use it in GitHub Desktop.
Save ezhov-da/01bb58811fa4292fdc472f054e546c63 to your computer and use it in GitHub Desktop.
ajax кроссдоменный
Ext.onReady(function(){
Ext.Ajax.useDefaultXhrHeader = false;
Ext.Ajax.request({
url: 'https://prog-tools.ru:64646/git',
timeout: 60000,
success: function(response){
alert(response.responseText);
},
failure: function(response){
console.log(response);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment