找不到laravel ajax 404页面

时间:2016-03-08 10:11:51

标签: javascript php angularjs ajax laravel-5.2

尝试在Laravel中使用AngularJS发送帖子请求,我收到此错误消息:

  

抱歉,找不到您要查找的页面。

JAVASCRIPT

app.controller('main',['$scope','$http','$httpParamSerializerJQLike',function($scope,$http,$httpParamSerializerJQLike) {
 $scope.courses = [];
  $http({
    url: "/afil",
    method: "POST",
    headers: {'Content-Type': 'application/x-www-form-urlencoded',"X-Requested-With":"XMLHttpRequest"},
    data: $httpParamSerializerJQLike()
}).success(function(res) {
  console.log(res);
  // $scope.courses = res;
}).error(function(res) {
});
}]);

routes.php文件

Route::post('/afil', function () {
    return 'Hello World';
  });

2 个答案:

答案 0 :(得分:1)

检查您的表单操作网址是否正确,如果您在路由中使用了组前缀,请不要忘记将其包含在表单操作网址中

答案 1 :(得分:0)

您可能需要先在角度模块中设置标题。然后你将发出http请求。

var app = angular.module('App', [], ['$httpProvider', function($httpProvider) {
    //Setting headers
    $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8';
    $httpProvider.defaults.headers.common['X-Requested-With'] = "XMLHttpRequest";
    $httpProvider.defaults.headers.post['X-CSRF-TOKEN'] = $('meta[name=_token]').attr('content');
}]);

app.controller('main',['$scope','$http','$httpParamSerializerJQLike',function($scope,$http,$httpParamSerializerJQLike) {
 $scope.courses = [];
  $http({
    url: "/afil",
    method: "POST",
    data: $httpParamSerializerJQLike()
}).success(function(res) {
  console.log(res);
  // $scope.courses = res;
}).error(function(res) {
});
}]);

希望这会对你有所帮助。