AI智能
改变未来

【Django基础】2、Django CSRF 引起的403解决方法


form表单

<form class=\"am-form\" id=\"edit\" method=\"post\" action=\"/submit/\">{% csrf_token %}</form>

js请求

function getCookie(name) {var cookieValue = null;if (document.cookie && document.cookie != \'\') {var cookies = document.cookie.split(\';\');for (var i = 0; i < cookies.length; i++) {var cookie = jQuery.trim(cookies[i]);// Does this cookie string begin with the name we want?if (cookie.substring(0, name.length + 1) == (name + \'=\')) {cookieValue = decodeURIComponent(cookie.substring(name.length + 1));break;}}}return cookieValue;}var csrftoken = getCookie(\'csrftoken\');$.post(\'/url/\', {csrfmiddlewaretoken: csrftoken,account: JSON.stringify({})
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 【Django基础】2、Django CSRF 引起的403解决方法