Created
May 26, 2012 15:54
-
-
Save eriwen/2794392 to your computer and use it in GitHub Desktop.
Simple cross-domain Javascript function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Make a X-Domain request to url and callback. | |
* | |
* @param url {String} | |
* @param method {String} HTTP verb ('GET', 'POST', 'DELETE', etc.) | |
* @param data {String} request body | |
* @param callback {Function} to callback on completion | |
* @param errback {Function} to callback on error | |
*/ | |
function xdr(url, method, data, callback, errback) { | |
var req; | |
if(XMLHttpRequest) { | |
req = new XMLHttpRequest(); | |
if('withCredentials' in req) { | |
req.open(method, url, true); | |
req.onerror = errback; | |
req.onreadystatechange = function() { | |
if (req.readyState === 4) { | |
if (req.status >= 200 && req.status < 400) { | |
callback(req.responseText); | |
} else { | |
errback(new Error('Response returned with non-OK status')); | |
} | |
} | |
}; | |
req.send(data); | |
} | |
} else if(XDomainRequest) { | |
req = new XDomainRequest(); | |
req.open(method, url); | |
req.onerror = errback; | |
req.onload = function() { | |
callback(req.responseText); | |
}; | |
req.send(data); | |
} else { | |
errback(new Error('CORS not supported')); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi I have used your code , and I get a 415 code returned. is it about bad connection or am I need configure different thing, So did you have ever seen that before ?