laravel5.1接收ajax数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel5.1接收ajax数据相关的知识,希望对你有一定的参考价值。
前台:
1 $.ajax({ 2 type: ‘POST‘, 3 url: ‘{!! url(‘aw/data‘) !!}‘, 4 data:{‘_token‘:‘<?php echo csrf_token() ?>‘,‘option‘:1}, 5 dataType: ‘json‘, 6 success: function (data) { 7 alert(data); 8 }, 9 error: function () { 10 alert("error") 11 } 12 });
后台:
1 public function postData() 2 { 3 $request = Input::all(); 4 //todo something and return json data 5 //e.g return the request data follow this: 6 return json_encode($request); 7 }
参考:https://segmentfault.com/q/1010000008852823
以上是关于laravel5.1接收ajax数据的主要内容,如果未能解决你的问题,请参考以下文章
html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。