如何在控制器中获取表单序列化数据

时间:2018-06-02 14:29:55

标签: php ajax laravel-5.5

我在ajax中使用serialise来发送表单数据。

 $.ajaxSetup({
       headers: {
           'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
       }
   });
   var formData = $('#reqForm').serialize();
   $.ajax({
       type:'post',
       data:{
         data:formData
       },
       url:'{{route('submit.requirement')}}',
       success:function(data)
       {
          alert('success');
       },

在控制器中,当我打印请求时,它会在检查网络中显示以下内容: -

public function saveData(Request $request)
{
     print_r($request->all());
}
 Array
   (
     [data] => nameuser=name&usermobile=00000000&city=city& useremail=example%40gmail.com&department_id=1&description=Testing

 )

现在我如何访问数据数组中的值以将其存储在laravel中的数据库中。

0 个答案:

没有答案