laravel中用ajax请求页面时有时会出现419错误,这是因为没有csrf值
在页面上添加
<meta name="csrf-token" content="{{ csrf_token() }}">
在页面js中添加
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
参考:
https://docs.golaravel.com/docs/5.5/csrf/#csrf-x-csrf-token
Fabrizio Coltellaro
zvonimir duric
Coltric Properties
网友评论