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>

 
上一篇:C#中用DateTime的ParseExact方法解析日期时间(excel中使用系统默认的日期格式)


下一篇:Android企业级程序完全退出的解决方案