我在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中的数据库中。