Laravel使用Ajax提交表单报419 unknown status错误的解决方法

1.在head标签中间添加一行meta标签:<meta name="csrf-token" content="{{ csrf_token() }}">
2.在ajax开头添加headers声明:headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')}
示例:
 $.ajax({
         headers: {
           'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
         },
         url: "",
         type: '',
         data: {},
         dataType: '',
         success: function (data) { }
}) 

  

 
 
 
posted @ 2020-10-23 14:20  人可永真  阅读(406)  评论(0编辑  收藏  举报