1

我正在尝试在我的项目中设置不同的用户类型及其各自的权限,AppServiceProvider.php但出现错误
explode() expects parameter 2 to be string, object given

在我的代码中,我explode()至少看不到任何地方。在添加之前Inertia::share(function(){})没有这样的错误。

这是我的代码:

public function register()
{

    Inertia::version(function () {
        return md5_file(public_path('mix-manifest.json'));
    });

    Inertia::share(function () {
       $auth = null;
       if (Auth::user()) {
           $perms = [];
           $user = Auth::user();

           if ($user->isSuperAdmin() || $user->isAdmin()) {
               $perms = [
                   [
                       'url' => '/',
                       'icon' => 'fa fa-home',
                       'name' => 'Dashboard'
                   ],
                   [
                       //rest of permissions
                   ],
               ];
           }
           if ($user->isUser()) {
               $perms = [
                   [
                       'url' => '/',
                       'icon' => 'fa fa-home',
                       'name' => 'Dashboard'
                   ],
                   [
                       //rest of permissions
                   ],
               ];
           }

           $auth = [
               'id' => Auth::user()->id,
               'name' => Auth::user()->name,
               'card' => Auth::user()->card,
               'scard' => Auth::user()->scard,
               'user_type_id' => Auth::user()->user_type_id,
               'email' => Auth::user()->email,
               'perms' => $perms
           ];
       }
       return [
           'app' => [
               'name' => Config::get('app.name'),
           ],
           'auth' => [
               'user' => $auth,
           ],
           'flash' => [
               'success' => Session::get('success'),
           ],
           'errors' => Session::get('errors') ? Session::get('errors')->getBag('default')->getMessages() : (object)[],
    ]
});

我究竟做错了什么?我在哪里得到错误,它没有指定错误在哪里,只是它是什么,它表明我提供的代码的最后一行是错误的位置,但所有这些都是右括号和括号。

4

1 回答 1

1

对惯性一无所知,您似乎在滥用该Inertia::share功能。在他们的文档中,我看到了 3 个示例。前两个参数 1 是一个字符串(例如'auth.user'or 'app.name'),最后一个参数 1 是一个关联数组,所以每个元素仍然有一个唯一的字符串键。

在您的代码中,您将一个闭包作为第一个参数传递。我相信您可以通过简单地添加名称作为第一个参数来修复它:

Inertia::share('auth.user', function () {
    $auth = null;
    if (Auth::user()) {
        $perms = [];
        $user = Auth::user();

        if ($user->isSuperAdmin() || $user->isAdmin()) {
            $perms = [
                [
                    'url' => '/',
                    'icon' => 'fa fa-home',
                    'name' => 'Dashboard'
                ],
                [
                    //rest of permissions
                ],
            ];
        }
        if ($user->isUser()) {
            $perms = [
                [
                    'url' => '/',
                    'icon' => 'fa fa-home',
                    'name' => 'Dashboard'
                ],
                [
                    //rest of permissions
                ],
            ];
        }

        $auth = [
            'id' => Auth::user()->id,
            'name' => Auth::user()->name,
            'card' => Auth::user()->card,
            'scard' => Auth::user()->scard,
            'user_type_id' => Auth::user()->user_type_id,
            'email' => Auth::user()->email,
            'perms' => $perms
        ];
    }
    return [
        'app' => [
            'name' => Config::get('app.name'),
        ],
        'auth' => [
            'user' => $auth,
        ],
        'flash' => [
            'success' => Session::get('success'),
        ],
        'errors' => Session::get('errors') ? Session::get('errors')->getBag('default')->getMessages() : (object)[],
    ];
});
于 2019-10-01T20:20:17.470 回答