Kendo Upload - CSRF Token with kendo ui jquery
问题 how to add CSRF Token in kendoUpload $("#image").kendoUpload({ async: { saveUrl: "http://url", } }); 回答1: <meta name="_token" content="{!! csrf_token() !!}" /> <input type="file" name="files" id="photos" /> var token = $('meta[name="_token"]').attr('content'); $("#photos").kendoUpload({ async: { saveUrl: "http://url/save" }, upload: onUpload }); function onUpload(e) { var xhr = e.XMLHttpRequest; if (xhr) { xhr.addEventListener("readystatechange", function (e) { if (xhr.readyState == 1 /*