如何在django app中实现ajax?

时间:2011-03-15 10:36:17

标签: javascript python ajax django google-app-engine

我的问题类似于

中的提及

use of ajax in django problem with the code

我尝试了解决方案,但仍然没有得到响应值。下面是我的代码

chkAjax.html
------------

<html>  
<head>  
<script>   
function chkAjax(form)  
{        
    var xmlhttp;
    if (window.XMLHttpRequest)
      {
         xmlhttp=new XMLHttpRequest();
      }
    else
      {
          xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    xmlhttp.onreadystatechange=function()
      {
          if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {
                alert(xmlhttp.responseText);    
                document.getElementById("t1").innerHTML=xmlhttp.responseText;
            }
      }
    xmlhttp.open("GET","/sign?text="+form.text1.value,true);
    xmlhttp.send();
}
function DoNav(theUrl,form)
{
      theUrl = theUrl + '?text=' + form.text1.value;
      document.location.href = theUrl;
}
</script>  
</head>
<body>   
<form method="get" action="">  
    <input type="text" name="text1" id="t1" onkeyup = 'chkAjax(this.form)'/>  
</form>
</body>
</html>

以下是我的处理程序的代码

from django.http import HttpResponse  
c=self.request.get('text')  
c=c + "b"  
self.response.write("hi")

使用alert()我开始知道我收到了响应但是没有值,所以请帮助我进入这个

1 个答案:

答案 0 :(得分:3)

在django中找到ajax的最佳例子