1

我的 Laravel 5 源代码中有一个UserControllerUser模型。还有一个AuthController也是 Present (使用 laravel 源预构建)。

我想使用 Eloquent 模型从刀片中的 db 查询数据。

但是,在我的User模型(Eloquent)和任何控制器中,user()都没有定义该方法。Auth即使那样,我也可以通过从课堂上访问它来在我的刀片中使用它。为什么?

例如,

在我的刀片中,{{ Auth::user()->fname }}有效。fname它从我的表中检索数据users并回显它。

它背后的逻辑是什么,我可以为其他数据库表模拟相同的逻辑tasks吗?

4

3 回答 3

1

每当您自动或手动执行此操作时

 if (Auth::attempt(['email' => $email, 'password' => $password])) 
{
}

选定的用户数据将存储在storage/framework/sessions

它会有类似的数据

a:4:{s:6:"_token";s:40:"PEKGoLhoXMl1rUDNNq2besE1iSTtSKylFFIhuoZu";s:9:"_previous";a:1:{s:3:"url";s:43:"http://localhost/Learnings/laravel5/laravel";}s:9:"_sf2_meta";a:3:{s:1:"u";i:1432617607;s:1:"c";i:1432617607;s:1:"l";s:1:"0";}s:5:"flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}

上面的会话文件没有任何数据,它会包含用户的 id、url、token 等 json 格式的数据。

然后,每当您调用{{ Auth::user()->fname }}Laravel 时,它就会识别出您正在尝试获取已登录用户的信息,fname然后 laravel 将获取文件并获取用户的主键并从数据库中的用户表中引用它。您可以为table您拥有的所有用户列执行此操作。

你可以在这里了解更多

于 2015-06-04T06:48:06.033 回答
1

这个用户函数定义在

vendor/laravel/framework/src/Illuminate/Auth/Guard.php

内容如下:

/**
 * Get the currently authenticated user.
 *
 * @return \Illuminate\Contracts\Auth\Authenticatable|null
 */
public function user()
{
    if ($this->loggedOut) return;

    // If we have already retrieved the user for the current request we can just
    // return it back immediately. We do not want to pull the user data every
    // request into the method because that would tremendously slow an app.
    if ( ! is_null($this->user))
    {
        return $this->user;
    }

    $id = $this->session->get($this->getName());

    // First we will try to load the user using the identifier in the session if
    // one exists. Otherwise we will check for a "remember me" cookie in this
    // request, and if one exists, attempt to retrieve the user using that.
    $user = null;

    if ( ! is_null($id))
    {
        $user = $this->provider->retrieveById($id);
    }

    // If the user is null, but we decrypt a "recaller" cookie we can attempt to
    // pull the user data on that cookie which serves as a remember cookie on
    // the application. Once we have a user we can return it to the caller.
    $recaller = $this->getRecaller();

    if (is_null($user) && ! is_null($recaller))
    {
        $user = $this->getUserByRecaller($recaller);

        if ($user)
        {
            $this->updateSession($user->getAuthIdentifier());

            $this->fireLoginEvent($user, true);
        }
    }

    return $this->user = $user;
}

这个 Guard.php 定义了更多的函数,我们不时使用这些函数,甚至不知道它们来自哪里

于 2015-06-04T06:52:54.007 回答
0

它之所以有效,是因为 Laravel 提供了不错的身份验证。

Auth 是身份验证库,具有很多这样的功能,请查看文档

于 2015-06-04T06:46:09.203 回答