Browse Source

Fix file upload csrf error

pull/6/head
Menci 7 years ago
parent
commit
cf5186139d
  1. 16
      static/script.js

16
static/script.js

@ -1,3 +1,13 @@
var addUrlParam = function (url, key, val) {
var newParam = encodeURIComponent(key) + '=' + encodeURIComponent(val);
url = url.split('#')[0];
if (url.indexOf('?') === -1) url += '?' + newParam;
else url += '&' + newParam;
return url;
};
$(function () {
$('a[href-post]').click(function (e) {
e.preventDefault();
@ -19,10 +29,6 @@ $(function () {
});
$('form').each(function () {
var input = document.createElement('input');
input.type = 'hidden';
input.name = '_csrf';
input.value = document.head.getAttribute('data-csrf-token');
this.appendChild(input);
this.action = addUrlParam(this.action || location.href, '_csrf', document.head.getAttribute('data-csrf-token'));
});
});

Loading…
Cancel
Save