ProgrammingUse Vue with Django, Meet CSRF在使用 Vue 的时候,如何向 Django 提交 form? 1 2 3 4 5 6 7 8 9 10 11 12 $.ajax({ url : 'YOUR_URL_HERE', headers: {'X-CSRFToken': $.cookie('csrftoken')}, type: 'POST', dataType: 'json', data: {}, success: function() { }, error: function(xhr, errMsg, err) { }, }); django docs: https://docs.djangoproject.com/en/1.11/ref/csrf/#ajaxReferencestackoverflow answer