我正在尝试让我的Python脚本将其输出流式传输到我的网页上。
所以在我的javascript中我做了:
var xmlhttp;
var newbody = "";
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==3) {
newbody = newbody + xmlhttp.responseText;
document.getElementById("new").innerHTML=newbody;
}
}
xmlhttp.open("GET","http://localhost/cgi-bin/temp.py",true);
xmlhttp.send();
在我的Python脚本中我有:
print "Content-Type: text/plain"
print ""
print " " * 5000 # garbage data for safari/chrome
sys.stdout.flush()
for i in range(0,5):
time.sleep(.1)
sys.stdout.write("%i " % i)
sys.stdout.flush()
现在我希望0 1 2 3 4
,但我得到的是0 0 1 0 1 2 0 1 2 3 0 1 2 3 4
似乎每次发送整个缓冲区,当我真正想要的是每个onreadystatechange发送一个数字。
我做错了什么?
答案 0 :(得分:3)
xmlhttp.responseText
始终包含整个回复,因此您不需要newbody
,只需使用xmlhttp.responseText
。