headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$obj = $(obj);
confirmWindow('Вы уверены texst ?',
function(){
$.ajax({
method: "POST",
url: "./reservequest",
dataType: 'json',
async: false,
data: {
action:'reserve',
}
}).done(function( msg ) {
console.log("message " +msg.message);
alertWindow(msg.message,function() {
if(msg.success) {
window.location.reload();
console.log("msg.success " +msg.success);
}
window.location.reload();
});
}).fail(function(err,d,f) {
alert(err+' '+d+' '+f);
window.location.reload();
});
},
function(){
});
}
после того как ajaxSetup заменил на var csrftoken = $('meta[name=_token]').attr('content'); $.ajaxSetup({ beforeSend: function (xhr, settings) { if (!/^(GET|HEAD|OPTIONS|TRACE)$/i.test(settings.type)) { xhr.setRequestHeader("X-CSRF-TOKEN", csrftoken) } }
Обсуждают сегодня