我看this問題和它給http://hacks.mozilla.org/2011/03/the-shortest-image-uploader-ever/一個鏈接,具有下面的代碼:這個Cross Domain ajax請求如何工作?
var fd = new FormData();
fd.append("image", file); // Append the file
fd.append("key", "6528448c258cff474ca9701c5bab6927");
// Get your own key: http://api.imgur.com/
// Create the XHR (Cross-Domain XHR FTW!!!)
var xhr = new XMLHttpRequest();
xhr.open("POST", "http://api.imgur.com/2/upload.json"); // Boooom!
xhr.onload = function() {
// Big win!
// The URL of the image is:
JSON.parse(xhr.responseText).upload.links.imgur_page;
}
// Ok, I don't handle the errors. An exercice for the reader.
// And now, we send the formdata
xhr.send(fd);
這是如何跨域請求工作?我認爲通常有一些安全限制可以阻止人們這樣做。
它仍然是這種情況? – Poutrathor 2015-12-20 14:19:19