-
Notifications
You must be signed in to change notification settings - Fork 0
/
stream.html
53 lines (50 loc) · 1.68 KB
/
stream.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE>
<html>
<head>
<title>Flushed ajax test</title>
<meta charset="UTF-8" />
<style>
#results {
background: #eee;
border: 1px solid #c00000;
height: 250px;
overflow: auto;
padding: 10px;
width: 98%;
}
</style>
</head>
<body>
<div id="results" style=""></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
var last_response_len = false;
$.ajax('stream.php', {
xhrFields: {
onprogress: function(e) {
var this_response, response = e.currentTarget.response;
if (last_response_len === false) {
this_response = response;
last_response_len = response.length;
} else {
this_response = response.substring(last_response_len);
last_response_len = response.length;
}
console.log(this_response);
data = $.parseJSON(this_response);
console.log(data);
$('#results').append('<br>' + data.message);
}
}
})
.done(function(data) {
console.log('Complete response = ' + data);
$('#results').append('<br><br>Complete response = ' + data);
})
.fail(function(data) {
console.log('Error: ', data);
});
console.log('Request Sent');
</script>
</body>
</html>