get csrf_token value in django template
# get csrf token value in template
{{ csrf_token }}
# render a input form element
{% csrf_token %}
get csrf_token value in django template
# get csrf token value in template
{{ csrf_token }}
# render a input form element
{% csrf_token %}
csrf token fetch django
let data = {
'file': file,
'fileName': file.name,
};
// You have to download 3rd Cookies library
// https://docs.djangoproject.com/en/dev/ref/csrf/#ajax
let csrftoken = Cookies.get('csrftoken');
let response = fetch("/upload/", {
method: 'POST',
body: JSON.stringify(data),
headers: { "X-CSRFToken": csrftoken },
})
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us