私信  •  关注

skye212

skye212 最近回复了
8 年前
回复了 skye212 创建的主题 » Django ajax post {%csrf_token%}的问题究竟怎么解决?

/csrftoken设置,否则无法调用$.post/ function setupAjax() { $.ajaxSetup({ beforeSend: function (xhr, settings) { var csrftoken = $.cookie('csrftoken'); xhr.setRequestHeader("X-CSRFToken", csrftoken); } }); }

使用方法: $(function(){ setupAjax(); $.post(...); });