我正在尝试向我的views.py 发送一个ajax 请求,但我不知道如何使用该路径。我的视图位于我的服务器上/home/pycode/main/main/apps/builder/views.py.
我发送请求的页面位于/home/dbs/www/python.html
我需要在我的 urls.py 中添加一些内容吗?
视图.py
#!/usr/bin/env python26
from django.http import HttpResponse
def main(request):
return HttpResponse("from python with love")
python.html jquery ajax
<script language="JavaScript">
$(document).ready(function() {
$("#myform").submit(function() {
var myCheckboxes = new Array();
$("input:checked").each(function() {
myCheckboxes.push($(this).val());
});
$.ajax({
type: "POST",
url: '/main',
data: { myCheckboxes:myCheckboxes },
success: function(response){
alert(response);
}
});
return false;
});
});
</script>