1

嗨,我可以在 laravel 框架中问这个问题吗

namespace Illuminate\Support\Facades;

/**
 * @see \Illuminate\Auth\AuthManager
 * @see \Illuminate\Contracts\Auth\Factory
 * @see \Illuminate\Contracts\Auth\Guard
 * @see \Illuminate\Contracts\Auth\StatefulGuard
 */
class Auth extends Facade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor()
    {
        return 'auth';
    }
}

return 'auth' 到底返回给调用者的是什么?它是文本'auth'还是对象?他们在该类中只有一种方法的原因是什么?对不起,我只是在学习 oop。

先感谢您。

4

1 回答 1

2

在这种情况下,正如您看到getFacadeAccessor的方法,它返回auth字符串。

Facades 只是使用其他类的“捷径”,但事实上,如果你不需要,你不应该在任何地方使用它们。

在 Laravel 中,您可以将对象/类绑定到应用程序中。所以你可以写例如:

$app->bind('something', function() {
   return new SomeObject();
});

假设类doSomething中有方法SomeObject

现在您可以使用此方法:

$app['something']->doSomething();

但你也可以创建外观:

class GreatClass extends Facade
{
    /**
     * Get the registered name of the component.
     *
     * @return string
     */
    protected static function getFacadeAccessor()
    {
        return 'something';
    }
}

现在您可以在应用程序中的任何地方使用:

GreatClass::doSomething();

回答您的问题,这getFacadeAccessor仅返回绑定到应用程序时使用的对象名称。要了解它的使用方式,您可以查看以下来源:

/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php

您应该首先查看的方法是getFacadeRoot- 因为此方法正在返回请求的对象。

于 2016-04-09T17:09:00.240 回答