나는 매우 기본적인 실행을 시도하고 있습니다. 나는 CI에 익숙하고 이제 Laravel 4를 배우고 있으며 그들의 문서는 쉽지 않습니다! 어쨌든 로그인 양식을 만들고 다음 양식에 인쇄하여 데이터가 성공적으로 게시되었는지 확인합니다. 이 예외가 발생합니다.
Symfony \ 구성 요소 \ HttpKernel \ 예외 \ MethodNotAllowedHttpException
내 MemberController.php :
public function index()
{
if (Session::has('userToken'))
{
/*Retrieve data of user from DB using token & Load view*/
return View::make('members/profile');
}else{
return View::make('members/login');
}
}
public function validateCredentials()
{
if(Input::post())
{
$email = Input::post('email');
$password = Input::post('password');
return "Email: " . $email . " and Password: " . $password;
}else{
return View::make('members/login');
}
}
경로는 다음과 같습니다.
Route::get('/', function()
{
return View::make('hello');
});
Route::get('/members', 'MemberController@index');
Route::get('/validate', 'MemberController@validateCredentials');
마지막으로 내보기 login.php에는 다음과 같은 형식 방향이 있습니다.
<?php echo Form::open(array('action' => 'MemberController@validateCredentials')); ?>
어떤 도움이라도 대단히 감사하겠습니다.
php artisan dump-autoload
?
url
에서 오류가 발생합니까?