当前位置:   article > 正文

django中的ajax_post请求_django ajax post

django ajax post

Ajax_post请求,涉及到post请求就会遇到csrf问题,ajax的post请求,同样需要发生csrf_token。
相比较get请求,post请求:
1、需要一字典格式整合数据
2、需要一个csrf_token,键必须是csrfmiddlewaretoken
其他部分和get请求类似
1、静态页面 ajax_post.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="/static/js/jquery.min.js"></script>
</head>
<body>
<form  >//ajax提交不在需要action method  form来提交
{% csrf_token %}
    {% for u in  userForm  %}
        <p><label >{
  { u.label }}</label>
        {
  { u }}</p>

    {% endfor %}

    <p><input type="button"  id="submit"  value="提交"></p>
//label别名
</form>
<script>
    $("#submit").click(
        function () {
            //收集数据
            var  username=$("#id_use
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/224343
推荐阅读
相关标签
  

闽ICP备14008679号