gpt4 book ai didi

php - spatie/laravel-permission没有名为 `edit_project`的权限作为后卫 `api`

转载 作者:行者123 更新时间:2023-12-03 11:23:11 25 4
gpt4 key购买 nike

我正在使用带有Spatie/laravel-permission版本2.9的Laravel 5.6,也使用Laravel Passport作为$guard = 'api'的身份验证驱动程序。

当我尝试借助此功能将诸如['edit_project', 'add_project' 'delete_project']之类的权限分配给角色时

public function assignPermissions($role, $permissions)
{

$role = Role::findByName($role);

$role->givePermissionTo($permissions);

return $role;
}

但收到错误 There is no permission named edit_project for guard api`。

我也有config/auth.php
return [

/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect start for most applications.
|
*/

'defaults' => [
'guard' => 'web',
'passwords' => 'users',
],

/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| here which uses session storage and the Eloquent user provider.
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| Supported: "session", "token"
|
*/

'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],

'api' => [
'driver' => 'passport',
'provider' => 'users',
],
],

/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| If you have multiple user tables or models you may configure multiple
| sources which represent each model / table. These sources may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/

'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\User::class,
],

// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],

/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| You may specify multiple password reset configurations if you have more
| than one user table or model in the application and you want to have
| separate password reset settings based on the specific user types.
|
| The expire time is the number of minutes that the reset token should be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/

'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'expire' => 60,
],
],

];

如果有任何解决方案,请帮助我,谢谢。

以及我正在Larvel seeder的帮助下播种权限表,我的权限表在第一次出现时就像下面的 guard_name是web一样。

enter image description here

但是我手动将 guard_name字段更改为“api”,我的权限表变成了这样。

enter image description here

最佳答案

创建权限后,运行以下命令应该对我有用。

php artisan cache:forget spatie.permission.cache 

then

php artisan cache:clear

关于php - spatie/laravel-permission没有名为 `edit_project`的权限作为后卫 `api`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49086974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com