django 使用jquery ajax post数据问题

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>
 
   

 

 

 

转载于:https://www.cnblogs.com/LD-linux/p/4881834.html

你可能感兴趣的:(django 使用jquery ajax post数据问题)