我在注册用户时遇到问题,在我的表用户中保存用户后,我尝试为该用户分配角色,但收到错误:
类名必须是有效对象或字符串。
我的代码是
(应用\ HTTP \控制器\ AUTH \ AuthController.php)
<?php
namespace App\Http\Controllers\Auth;
use App\User;
use App\Role;
use Validator;
use App\Http\Controllers\Controller;
use App\Http\Controllers\Controller\Auth;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
use Illuminate\Http\Request;
class AuthController extends Controller
{
public function postRegister(Request $request){
$this->validate($request,[
'name' => 'required|min:4|max:255|unique:users',
'email'=>'required|email|max:255|unique:users',
'password'=>'required|confirmed|min:3'
]);
$user_data = array(
//$field => $request->input('login'),
'name'=> $request->input('name'),
'email' => $request->input('email'),
'password' => $request->input('password')
);
$user=User::create([
'name'=>$user_data['name'],
'email'=>$user_data['email'],
'password'=>bcrypt($user_data['password']),
'active'=>1
]);
echo $user;
$role = Role::where('name','=','admin')->first();
//$user->attachRole($role->id);
$user->roles()->attach($role->id);
//return redirect('auth/register')->with('message','store');
}
}
echo
$user
打印此信息:
{&#34;名称&#34;:&#34; bbbbbvq&#34;&#34;电子邮件&#34;:&#34; bb@bbv.comq",&#34;有源&# 34;:1,&#34;的updated_at&#34;:&#34; 2016年3月3日 19:07:24&#34;,&#34; created_at&#34;:&#34; 2016-03-03 19:07:24&#34;,&#34; id&#34;:32}
我已将委托Zizaco\Entrust\src\config\config.php
复制到我的proyect\app\config\entrust.php
,并在此方法中修改了文件test\vendor\zizaco\entrust\src\Entrust\EntrustServiceProvider.php
:
private function registerCommands()
{
/*
$this->app->bindShared('command.entrust.migration', function ($app) {
return new MigrationCommand();
});
$this->app->bindShared('command.entrust.classes', function ($app) {
return new ClassCreatorCommand();
});*/
$this->app->singleton('command.entrust.migration', function ($app) {
return new MigrationCommand();
});
$this->app->singleton('command.entrust.classes', function ($app) {
return new ClassCreatorCommand();
});
}
答案 0 :(得分:7)
这解决了我的问题。
第51行的 vendor/zizaco/entrust/src/Entrust/Traits/EntrustRoleTrait.php
将调用Config::get('auth.model')
作为$this->belongsToMany(
方法调用的第一个参数。
public function users()
{
return $this->belongsToMany(Config::get('auth.model'), ...
// return $this->belongsToMany(Config::get('auth.model'), ...
}
您可以将此更改为Config::get('auth.providers.users.model')
或更新您的config/auth.php
文件以包含条目model => App\Users::class
'model' => App\Users::class,
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Users::class,
],
],
我的首选是更新config/auth.php
文件,因为您的团队中的其他人或您转到生产时,对供应商文件夹的任何更改都无法使用。
当然,如果您为用户使用不同的型号,则可以提供相应的型号。
答案 1 :(得分:3)
Entrust还没有针对5.2进行升级,所以你需要稍微调整一下。
作为tapos gosh has said before你需要进入vendor/zizaco/entrust/src/commands/MigrationCommand.php
和第86行:
删除
$usersTable = Config::get('auth.table');
$userModel = Config::get('auth.model');
并将其替换为
$usersTable = Config::get('auth.providers.users.table');
$userModel = Config::get('auth.providers.users.model');
然后在config/auth.php
文件中写下提供者行,如下所示:
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\User::class,
'table' => 'users',
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
答案 2 :(得分:0)
assignRole ()用户遇到相同的问题。解决方案是角色表 guard_name 必须为'
网络
'。