遇到个非常奇怪的问题,之前这么写,可以获得topics列表数据
Route::middleware('api')->get('/topics', function (Request $request) {
return \App\Topic::select(['id', 'name'])
// api/topics?q=lar
->where('name', 'like', '%'.$request->query('q').'%')
->get();
});
但是改为下面的,报401 Unauthorized
Route::get('topics','QuestionController@topics')->middleware('api');
bootstrap.js 中我也加入了
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
百思不得奇解