我的身份验证,一切正常。我可以登录/注销等。我有两个表,一个叫做用户,这是默认的验证,第二个叫做播放器,用于播放器数据。我做了一个播放器模型。
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Player extends Model
{
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'players';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['username', 'wood'];
}
并将AuthController类编辑为:
class AuthController extends Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use AuthenticatesAndRegistersUsers, ThrottlesLogins;
/**
* Create a new authentication controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest', ['except' => 'getLogout']);
}
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function validator(array $data)
{
return Validator::make($data, [
'username' => 'required|min:4|max:32|unique:players',
'name' => 'required|max:255',
'email' => 'required|email|max:255|unique:users',
'password' => 'required|confirmed|min:6',
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
*/
protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
]);
return Player::create([
'username' => $data['username'],
'wood' => 0,
]);
}
}
当我注册一个新用户时,用户数据会在users表中创建,但我的玩家表没有任何反应。它只是空的。
答案 0 :(得分:1)
这是因为在将数据插入User表后退出方法。 这里的代码错误:
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
]);
需要:
protected function create(array $data)
{
User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
]);
return Player::create([
'username' => $data['username'],
'wood' => 0,
]);
}