在JS中,使用post方法提交数据到后台,出现错误:
Forbidden (CSRF token missing or incorrect.):.........;
解决办法:
在页面导入JS的位置,补上以下代码即可:
1 <script> 2 $.ajaxSetup({ 3 data:{csrfmiddlewaretoken:‘{{ csrf_token }}‘} 4 }) 5 </script>
原文地址:https://www.cnblogs.com/lhb-alan/p/11372995.html
时间: 2024-11-09 05:00:04