Created
April 23, 2015 10:28
-
-
Save lanwin/512731f4a0f73631a4fd to your computer and use it in GitHub Desktop.
Endless XMLHttpRequest leaves a tmp file for every request when responseType = 'blob' is set # 3
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
function onload(s) { | |
console.log(s); | |
func(); | |
} | |
function func() { | |
var xhr = new XMLHttpRequest(); | |
xhr.open('GET', 'http://server.cors-api.appspot.com/server?id=1516545&enable=true&status=200&credentials=false', true); | |
xhr.responseType = 'blob' | |
xhr.onload = onload; | |
xhr.send(); | |
} | |
func(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment