我的Laravel Ajax调用在本地与XAMPP和Apache一起工作,但不在服务器(NGINX)上。所有与此主题相似的问题都无法解决我的问题。有谁知道问题可能是什么?
控制器
<?php
public function readHSauswahl(Request $request)
{
$data = Message::where('name', '=', $request->title)->get();
return response()->json($data);
}
路线
Route::get('/readHSauswahl', 'AjaxController@readHSauswahl');
的Ajax
$.ajax({
type: 'get',
url:'{!!URL::to('/readHSauswahl')!!}',
dataType: "json",
data:{'title':hochschule_name},
success:function(data){
console.log(data);
}
...