Laravel:Auth::user()->id 试图获取非对象的属性 [英] Laravel: Auth::user()->id trying to get a property of a non-object

查看:34
本文介绍了Laravel:Auth::user()->id 试图获取非对象的属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我提交表单以添加用户时,我收到以下错误试图获取非对象的属性",错误显然在第一行:Auth::user()->id以下内容:

I'm getting the following error "trying to get a property of a non-object" when I submit a form to add a user, the error is apparently on the first line: Auth::user()->id of the following:

$id = Auth::user()->id;
$currentuser = User::find($id);
$usergroup = $currentuser->user_group;
$group = Sentry::getGroupProvider()->findById($usergroup);

$generatedPassword = $this->_generatePassword(8,8);
$user = Sentry::register(array('email' => $input['email'], 'password' => $generatedPassword, 'user_group' => $usergroup));

$user->addGroup($group);

有什么想法吗?我已经搜索了一段时间,我看到的一切都表明这应该可以正常工作.我的用户使用 Sentry 2 身份验证包登录.

Any ideas? I've searched for a while and everything I see says this should work fine. My user is logged in using the Sentry 2 authentication bundle.

推荐答案

如果你正在使用 Sentry 检查登录用户 Sentry::getUser()->id.你得到的错误是 Auth::user() 返回 NULL 并且它试图从 NULL 获取 id 因此错误 trying to get a property from a non-object.

If you are using Sentry check the logged in user with Sentry::getUser()->id. The error you get is that the Auth::user() returns NULL and it tries to get id from NULL hence the error trying to get a property from a non-object.

这篇关于Laravel:Auth::user()->id 试图获取非对象的属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆