我开发了一个具有两个不同注册的站点,并且我有 2 个不同的表,我使用 RbacDB,并且在组件部分的 Web 配置中我有用户配置,据此我想知道如何使用 2 个不同的字段配置文件?
配置:
'components' => [
'request' => [
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
'cookieValidationKey' => '213h2i3121h12osiajls',
],
'cache' => [
'class' => 'yii\caching\FileCache',
],
'user' => [
'identityClass' => 'app\models\User',
'enableAutoLogin' => true,
],
// Here after user I need to add another config user-two
'user-two' => [
'identityClass' => 'app\models\SecondUser',
'enableAutoLogin' => true,
],
当我这样做时,显示此错误 在此处输入图像描述
谢谢!