Laravel – 解決ajax token問題

<!-- 在head tag 裡增加以下一行 -->
<meta name="csrf-token" content="{{ csrf_token() }}">
//方案1
$(function(){
  $.ajaxSetup({
    headers:{
      'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content');
    }
  });
});

//方案2
$.ajax({
  type:"POST",
  url:"/route_name",
  headers:'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
});

開始在上面輸入您的搜索詞,然後按回車進行搜索。按ESC取消。

返回頂部