0

我正在尝试按照 David Mosher 在 youtube 上使用 Angular JS 进行端到端的教程:http ://www.youtube.com/watch?v=hqAyiqUs93c 。

一切都很顺利,直到我尝试将 /auth/login 和 auth/logout url 路由到身份验证服务,如 14:30 左右的视频所示。当我尝试登录时,收到 404 Not Found 错误。我试过弄乱路由的 URL,但无济于事。我使用 MySQL 和 Laravel 在 MAMP 上本地运行。

这是我的 routes.php 代码

Route::get('/', function(){
    return View::make('index');
});

Route::post('/auth/login/', 'AuthController@login');
Route::get('/auth/logout/', 'AuthController@logout');

和我的 AuthController 代码

<?php

class AuthController extends BaseController {
  public function login()
  {
    if(Auth::attempt(array('email' => Input::json('email'), 'password' => Input::json('password'))))
    {
      return Response::json(Auth::user());
    } else {
      return Response::json(array('flash' => 'Invalid username or password'), 500);
    }
  }

  public function logout()
  {
    Auth::logout();
    return Response::json(array('flash' => 'Logged Out!'));
  }

}

最后,验证服务的代码

angular.module("epicApp")
    .factory('AuthenticationService', function($http, $location){
        return{
            login: function(credentials){
                return $http.post("/auth/login/", credentials);
            },
            logout: function(){
                return $http.get("/auth/logout/");
            }
        }
    })
4

2 回答 2

0

唯一的问题是您必须在路线和角度脚本中替换所有/auth/login/toauth/login/auth/logout/to auth/logout

所以你的路线应该是,

Route::get('/', function(){
    return View::make('index');
});

Route::post('auth/login', 'AuthController@login');
Route::get('auth/logout', 'AuthController@logout');

和js,

angular.module("epicApp")
    .factory('AuthenticationService', function($http, $location){
        return{
            login: function(credentials){
                return $http.post("auth/login", credentials);
            },
            logout: function(){
                return $http.get("auth/logout");
            }
        }
    })
于 2013-10-01T08:57:49.920 回答
0

我不知道这个问题是否仍然相关,但如果在公用文件夹中索引文件不是 .php,您将获得带有任何 HTTP URL 的 404。您可以重命名 Angular 应用程序的 index.html。

于 2016-03-09T21:54:50.623 回答