这是我在这里的第一篇文章,我真的需要您的帮助!预先感谢。
如下所示的Javascript文件
我创建一个AJAX请求并将数据发送到网址\getCount
。
但是似乎对我的代码没有任何影响,并且控制台中没有错误。
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
function getCount(name,price,qty,type) {
$.ajax({
type:'POST',
url:'/getCount',
data: {
name: name,
price: price,
qty: qty,
type: type
},
success:function (data) {
alert(data.success);
}
});
}
路线
Route::post('/getCount','ajaxController@index');
控制器
public function index(Request $request){
return response()->json(['success'=>'Got Simple Ajax Request.']);
}