今天小编就为大家分享一篇Django 使用Ajax进行前后台交互的示例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
本文要实现的功能是:根据下拉列表的选项将数据库中对应的内容显示在页面,选定要排除的选项后,提交剩余的选项到数据库。
为了方便前后台交互,利用了Ajax的GET和POST方法分别进行数据的获取和提交。
代码如下:
部分HTML代码为:
views.py中处理请求和响应代码:
def soft_submit(request): if request.is_ajax(): id=request.POST.get('type_id') return HttpResponse("success") def soft_filter(request,fami): softtype='' ajax_release_version=[] release_version=[] if request.is_ajax(): softtype=request.GET.get('type_id') soft_type=SoftTypeRef.objects.using('vul').filter(description=softtype) soft_tp_id=0 for i in soft_type: soft_tp_id= i.soft_type_id web_soft=SoftWeb.objects.using('vul').filter(soft_type_id=soft_tp_id) for i in web_soft: ajax_release_ver=i.release_version ajax_release_version.append(ajax_release_ver) return HttpResponse(json.dumps(ajax_release_version), content_type='application/json')
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。