Yii2:从视图中调用 class 用户中的自定义方法

Yii2: call custom method in class User from view

我想用一个名为 getFirstname 的函数扩展我自己的用户模型。 该函数应该 return 数据库中的自定义字段。

但是当我扩展用户模型时。它说 "Calling unknown method: yii\web\User::getFirstname()"

我在 app\models\user 中的用户模型。 我已删除文件中与此问题无关的方法。

<?php

namespace app\models;

use Yii;
use yii\base\NotSupportedException;
use yii\behaviors\TimestampBehavior;
use yii\db\ActiveRecord;
use yii\web\IdentityInterface;

/**
 * User model
 *
 */
class User extends ActiveRecord implements IdentityInterface
{

    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return '{{%user}}';
    }

    /**
     * @inheritdoc
     */
    public function behaviors()
    {
        return [
            TimestampBehavior::className(),
        ];
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [];
    }

    /**
     * Finds user by email
     *
     * @param string $email
     * @return static|null
     */
    public static function findByEmail($username)
    {
        return static::findOne(['user_email' => $username]);
    }

    /**
     * @inheritdoc
     */
    public function getId()
    {
        return $this->getPrimaryKey();
    }

    public function getFirstname()
    {
        return $this->user_firstname;
    }  
}

我的配置文件:

$config = [
    'id' => 'basic',
    'basePath' => dirname(__DIR__),
    'bootstrap' => ['log'],
    'components' => [
        'request' => [
            // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
            'cookieValidationKey' => 'thepaXucufrE2pefRethaxetrusacRu3',
        ],
        'cache' => [
            'class' => 'yii\caching\FileCache',
        ],
        'user' => [
            'identityClass' => 'app\models\User',
            'loginUrl' => ['login/sign-in'],
            'enableAutoLogin' => true,
        ],
        'errorHandler' => [
            'errorAction' => 'site/error',
        ],
        'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => true,
        ],
        'log' => [
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
                [
                    'class' => 'yii\log\FileTarget',
                    'levels' => ['error', 'warning'],
                ],
            ],
        ],
        'db' => require(__DIR__ . '/db.php'),
    ],
];

在我的视图文件中:

<?= Yii::$app->user->getFirstname() ?>

我做错了什么?

User class 与 getFirstname 方法在 \app\models 命名空间中,但在您的视图中被调用的方法在 yii\web 中命名空间。您应该更改代码以使用 \app\models\User.

试试这个:

<?= Yii::$app->user->identity->getFirstname() ?>

<!-- or -->

<?= Yii::$app->user->identity->firstname ?>

使用 Yii::$app->user 您只需获得 用户组件 User component class 评论告诉你:

User is the class for the "user" application component that manages the user authentication status.

因此,您通过 Yii::$app->user 获得的不是实际用户,而是管理组件。使用此 class 的 identitygetIdentity(),您将获得实现 IdentityInterface 的用户对象。当您查看时:您的用户 class 实现了此接口。在您的配置中,您告诉 用户组件 它应该完全使用您的用户 class.