4

getFirstname という関数を使用して、独自のユーザー モデルを拡張したいと考えています。この関数は、データベース内のカスタム フィールドを返す必要があります。

しかし、ユーザーモデルを拡張すると。「不明なメソッドを呼び出しています: 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() ?>

ここで何が間違っていますか?

4

2 に答える 2

5

これを試して:

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

<!-- or -->

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

ユーザーコンポーネントYii::$app->user取得するだけです。User コンポーネントクラスのコメントは、次のことを示しています。

ユーザーは、ユーザー認証ステータスを管理する「ユーザー」アプリケーション コンポーネントのクラスです。

したがって、 で取得するのは実際のユーザーではなくYii::$app->user、管理コンポーネントです。このクラスを使用identityするgetIdentity()と、IdentityInterface を実装しているユーザー オブジェクトを取得できます。よく見ると、 User クラスはこのインターフェースを実装しています。そして、構成で、ユーザーコンポーネントに、ユーザークラスを正確に使用する必要があることを伝えます。

于 2015-03-10T07:34:51.807 に答える
0

メソッドUserを持つクラスは名前空間にありますが、ビューで呼び出されているクラスは名前空間にあります。使用するコードを変更する必要があります。getFirstname\app\modelsyii\web\app\models\User

于 2015-03-10T07:01:31.840 に答える