我正在尝试学习Kohana的Auth模块,但登录方法总是返回false。
控制器:
<?php defined('SYSPATH') OR die('No Direct Script Access');
class Controller_Auth extends Controller {
public function action_index() {
if($_POST) {
$this->login();
}
$this->template = View::factory('login');
echo $this->template;
}
private function login() {
$user = ORM::factory('user');
$data = array('username' => 'wilson', 'password' => '123');
if(!$user->login($data)) {
echo 'FAILED!';
}
}
private function logout() {
}
}
?>
型号:
<?php defined('SYSPATH') or die('No direct script access.');
class Model_User extends Model_Auth_User {
}
?>
答案 0 :(得分:1)
你做错了。
要登录用户,请执行以下操作:
$auth = Auth::instance();
if ($auth->login($_POST['username'], $_POST['password']))
{
echo 'hello, '.$auth->$_POST['username'];
}
else
{
echo 'login failed!';
}
此外,取消注释应用程序引导程序中的auth模块行:
'auth' => MODPATH.'auth', // Basic authentication
答案 1 :(得分:1)
我没有向用户添加规则。有关更多信息,请参阅此链接[1]。
谢谢你们,对不起抱歉:)
public function action_signin()
{
#If user already signed-in
if(Auth::instance()->logged_in()!= 0){
#redirect to the user account
Request::instance()->redirect('account/myaccount');
}
$content = $this->template->content = View::factory('signin');
#If there is a post and $_POST is not empty
if ($_POST)
{
#Instantiate a new user
$user = ORM::factory('user');
#Check Auth
$status = $user->login($_POST);
#If the post data validates using the rules setup in the user model
if ($status)
{
#redirect to the user account
Request::instance()->redirect('account/myaccount');
}else
{
#Get errors for display in view
$content->errors = $_POST->errors('signin');
}
}
}