我有以下路线:
Route::get('albums/{id}','Frontend\ProfileController@albumDetail');
此路线下的所有ajax呼叫都变为如下所示:
http://localhost/abc/public/album/profile/get-notes
在我的ajax电话中,我试图访问以下路线:
Route::post('profile/get-notes','Frontend\ProfileController@getNotes');
我为ajax编写的代码:
$http.post('profile/get-notes',note_data).success(function(response){
$scope.notes = response.notes;
});
我不知道为什么我的系统会在我的ajax电话中添加相册'在参数化路线的情况下,否则工作正常。因此获得404错误作为此
的路线" http://localhost/abc/public/album/profile/get-notes"不存在。