我在Laravel 5中收到此错误:
SQLSTATE [42S02]:未找到基表或视图:1146表' intern.users'不存在(SQL:select * from users where username = admin limit 1)
配置/ database.php中
'mysql' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'intern',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => false,
],
为admin页面调用函数admin,并在其中以admin形式提及数据库表,因为其中有许多表。
public function admin(Request $request){
if($request->isMethod('get')){
return \View::make('student.admin');
} else
{
$check=0;
$check=\DB::table('admin')->get();
$username = Input::get('username');
$password = Input::get('password');
$data=array(
'username'=>$request->get('username'),
'password'=>$request->get('password')
);
if(\Auth::attempt($data))
{
return redirect::intended('student/index');
}
else
{
return redirect('student/admin');
}
}
}
表格在这里:
<div id="pageContent"><br />
<div align="left" style="margin-left:24px;">
<h2>Please Log In To Manage</h2>
{!! Form::open(array('url' => '/admin')) !!}
<input type="hidden" name="_token" value="{{ csrf_token() }}">
User Name:<br />
<input name="username" type="text" id="username" size="40" />
<br /><br />
Password:<br />
<input name="password" type="password" id="password" size="40" />
<br />
<br />
<br />
<input type="submit" name="button" id="button" value="Log In" />
{!! Form::close() !!}
答案 0 :(得分:2)
首先,您应该散列并创建用户详细信息,以使coloumn准备好进行身份验证。
我已经给出了实现它的步骤。
第1步:获取输入
$UserData = Input::all();
第2步:创建条目 - 插入用户表
User::create($UserData);
注意:
您的users
表
其他设置:
在User.php(模型)中有这一行
protected $fillable = ['email', 'password'];
这是我的小登录代码,对您来说很简单
如果你愿意,试试这个
$email = $this->request->input('email');
$password = $this->request->input('password');
if (Auth::attempt(['email' => $email, 'password' => $password])) #If the Credentials are Right
{
return redirect::intended('student/index'); #Your Success Page
}
else
{
return redirect('student/admin'); #Your Failure Page
}
推荐:
我还建议在创建
之前向validate用户输入。{附加说明:
如果您看到您的表格,并且您的密码是加密的,这意味着您已完成;)