gpt4 book ai didi

drupal - 如何在 Drupal 8 中加载用户配置文件类型?

转载 作者:行者123 更新时间:2023-12-04 02:06:24 25 4
gpt4 key购买 nike

我想按用户 ID 加载用户配置文件模块数据:

Code:


$profile_type = 'my_profile';
$user_id = 1;
$current_user = User::load($user_id);
$active_profile = $this->entityTypeManager()->getStorage('profile')->loadByUser($current_user, $profile_type);

print_r($active_profile);

但是,它会返回以下错误。

Error:


The website encountered an unexpected error. Please try again later.
Recoverable fatal error: Argument 1 passed to Drupal\profile\ProfileStorage::loadByUser() must implement interface Drupal\Core\Session\AccountInterface, null given, called in C:\xampp\htdocs\catchow\htdocs\modules\custom\catchow_registration_contactlab\src\Controller\CatchowRegistrationContactlabController.php on line 122 and defined in Drupal\profile\ProfileStorage->loadByUser() (line 16 of modules\contrib\profile\src\ProfileStorage.php).
Drupal\profile\ProfileStorage->loadByUser(NULL, 'authenticated_user') (Line: 122)

最佳答案

这已经很晚了,但其他人会来这里(就像我一样)。

我不得不进入配置文件模块源代码才能找到它,但我想当你考虑它时很明显:

$list = \Drupal::entityTypeManager()
->getStorage('profile')
->loadByProperties([
'uid' => $account->id(),
'type' => 'profile_type',
]);

您可能希望将其包装在服务中 - 如果您不这样做,您应该仔细审视自己为什么不这样做:-)

关于drupal - 如何在 Drupal 8 中加载用户配置文件类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43118385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com