在我使用错误的选项进行发布/获取等之前遇到过这几次,但只是跳回到这个项目并画了一个空白。
使用角度作为帖子:
$scope.likeUpdate = function(update_id) {
console.log("clicked");
$http.post( $rootScope.apiURL + 'updates/likeupdate', {
update_id : update_id,
user_id : $rootScope.currentUser.id
}).success(function(update, response){
console.log(response);
});
}
我在资源路线之前设置了一条路线:
Route::post('updates/likeupdate', 'UpdateController@likeUpdate');
Route::resource('updates', 'UpdateController');
但是我得到的方法不允许错误......关于这个的任何想法?