第一:先在HTML中加入{% csrf_token %}
$.ajax({ url: ‘{% url "ceshi:list" %}‘, type: ‘post‘, dataType: ‘json‘, cache: false, data: { key: "11111", csrfmiddlewaretoken: $(‘[name="csrfmiddlewaretoken"]‘).val() }, success: function(obj) { console.log("hello") } });
第二:先在HTML中加入{% csrf_token %}
$.ajax({ url: ‘{% url "ceshi:list" %}‘, type: ‘post‘, dataType: ‘json‘, cache: false, headers: {"X-CSRFToken": $(‘[name="csrfmiddlewaretoken"]‘).val()}, data: { key: "11111", }, success: function(obj) { console.log("hello") } });
原文地址:https://www.cnblogs.com/weilaibuxiangshuo/p/10981369.html
时间: 2024-10-21 13:02:45