Pythonスクリプトを使用してajaxで画面にテキストを表示していますが、ラグがあり、動作しないこともあります..
ここにpythonスクリプトがあります
#!/usr/bin/env python
import cgi, cgitb
form = cgi.FieldStorage()
q = form.getvalue('q')
print "Content-Type: text/html\n"
print q
そしてhtml
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function show(str){
var xmlhttp;
if (str.length == 0){
document.getElementById("hint").innerHTML = "";
return;
}
if(window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}
else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("hint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","../cgi-bin/ajax_test.py?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form action="">
<input type="text" id="txt1" onkeyup="show(this.value)" />
</form>
<span id="hint"></span>
</body>
それは私のコードのせいですか?それともcgi/pythonが遅いからですか?