码迷,mamicode.com
首页 > Web开发 > 详细

django 使用jquery ajax post数据问题

时间:2015-10-15 12:37:47      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

django 开启了CSRF功能导致jquery ajax post数据报错

解决方法在post数据里引入csrfmiddlewaretoken: {{ csrf_token }}},同时需要在form表单中设置{% csrf_token %}


<script src="/static/jquery/dist/jquery.min.js"></script>
                  <script>
                       $(function(){
                            $("#postset").click(function() {
                                $.post("", {newpasswd1: "John", newpasswd2: "John",csrfmiddlewaretoken: {{ csrf_token }}},function (data) {
                                            alert("Data Loaded: " + data);
                                        });
                            });
                        });
                  </script>

 

 

 

django 使用jquery ajax post数据问题

标签:

原文地址:http://www.cnblogs.com/LD-linux/p/4881834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!