Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created September 30, 2016 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/5ba5824b1b621fbc36ec693d7091bd1f to your computer and use it in GitHub Desktop.
Save marcusshepp/5ba5824b1b621fbc36ec693d7091bd1f to your computer and use it in GitHub Desktop.
react django csrf middleware token component + jquery cookie function
django-csrf-token.js
import React from 'react';
export default class DjangoCSRFToken extends React.Component {
render(){
var csrf_token = getCookie('csrftoken');
return (<input type="hidden" name="csrfmiddlewaretoken" value={ csrf_token }/>);
}
}
index.html
<script type="text/javascript">
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 csrf_token = getCookie('csrftoken');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment