“419 Nieznany status” Kod odpowiedzi

419 Nieznany status

//It's an error of csrf token, there is multiples ways to fix it, too much to 
//write a grepper answer on.

//419 : error of csrf token

//Common way to fix it, try this
$.ajaxSetup({
    headers: {
        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
    }
});
L'homme habile

HTTP Status połączenia: 419

Use this in the head section:

<meta name="csrf-token" content="{{ csrf_token() }}">

and get the csrf token in ajax:
$.ajaxSetup({
  headers: {
    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
  }
});
Lokesh003Coding

Odpowiedzi podobne do “419 Nieznany status”

Pytania podobne do “419 Nieznany status”

Więcej pokrewnych odpowiedzi na “419 Nieznany status” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu