dongweihuan8610 2015-06-05 10:26
浏览 153
已采纳

在Laravel中使用ajax发布表单

I know this question has been out there many times, however I am unable to get through this.

Here is my route:

Route::post('/masters/board/edit', 'MastersController@editBoard');

My Controller:

public function editBoard() {
        $board = Board::findOrFail(Input::get('id'));
        $board->nick_name        = Input::get('nick_name');
        $board->board_name        = Input::get('board');
        $board->type                        = Input::get('type');
        $board->save();

        return Redirect::action('MastersController@getBoards');
    }

My JS:

$("#edit_form").submit(function(e) {
    e.preventDefault();

    var type = "#edit_form";

    var formData = {
          id : $(type + " #id").val(),
          nick_name : $(type + " #nick_name").val(),
          name : $(type + " #board").val()
      }

    $.ajax({
      type: "POST",
      url: "masters/board/edit",
      data: formData,
      success: function(data) {
        console.log(data);
      }
    });
  });
});

This is throwing an error:

[Error] Failed to load resource: the server responded with a status of 500 (Internal Server Error) (edit, line 0)

Can anyone see a reason why?

  • 写回答

1条回答 默认 最新

  • douchengjue9892 2015-06-05 12:28
    关注

    Add a meta tag with the csrf_token.

    <meta name="_token" content="{{ csrf_token() }}" />
    

    And add that token to your data.

    var formData = {
      id : $(type + " #id").val(),
      nick_name : $(type + " #nick_name").val(),
      name : $(type + " #board").val()
      _token: $('meta[name="_token"]').attr('content')
    }
    

    If you are going to perform lot of post requests try the following. Use the following script to setup your ajax requests with the csrf token.

    $(function() {
      $.ajaxSetup({
        headers: {
          'X-CSRF-Token': $('meta[name="_token"]').attr('content')
        }
      });
    });
    

    If you are using laravel 5 this should work out of the box. If not you need to edit your app/filters.php file.

    Replace the csrf filter with the following.

    Route::filter('csrf', function() {
        $token = Request::ajax() ? Request::header('X-CSRF-Token') : Input::get('_token');
        if (Session::token() != $token)
            throw new Illuminate\Session\TokenMismatchException;
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥20 java在应用程序里获取不到扬声器设备