发布500(内部服务器错误)ajax虽然在laravel中使用csrf标记

时间:2018-01-10 10:50:02

标签: php jquery ajax laravel-5.3

虽然我在我的html文件中使用{{ csrf_field() }}仍然有POST http://localhost:8000/add_user 500 (Internal Server Error)

这是我的代码

$.ajax({

    url:"/add_user",                       
    type: 'post',
    data: {_token : token, user_type_id : user_type_id,  full_name : full_name,  email : email, password : password,  username : username, date : date},
                        success:function(msg){

    $("#report").load(location.href + " #report");

   }
});

2 个答案:

答案 0 :(得分:0)

您可以使用csrf令牌

执行此操作
$.ajax({
  type: "POST",
  url: "url/update",
  dataType: 'json',
  data: 'id=' + id+ '&_token={{csrf_token()}}',

答案 1 :(得分:0)

提供您的服务器路由器,s seem就像您在服务器上错过了此路由请求一样