4

別の選択ボックスに関連する選択ボックスの使用方法の答えは? 最初の選択ボックスのIDを2番目の選択ボックスにハードコーディングすると、コードが機能します。ただし、実際のフォーム値を使用しようとすると、

Notice: 未定義のインデックス: my_group

グループ選択ドロップボックスに基づいて表示したいドロップダウンボックスのコードは次のとおりです。

  $builder->add('subscriptiontype', 'entity',
        array(
            'label' => 'profile.edit.my_subscription_type', 
            'translation_domain' => 'FOSUserBundle',
            'empty_value' => 'Select subscription type',
            'property' => 'subscription_title',
            'class' => 'SDMarketplaceBundle:SubscriptionType',
            'multiple' => false,
            'attr' => array('onchange' => '',  'class' => ''),
            'query_builder' => function($repository) use ($options){ 
                return $repository
                    ->createQueryBuilder('j')
                        ->where('j.isActive = :active AND j.valid_until > :timenow AND j.group = :group_id')
                        ->setParameter('active', 1)
                        ->setParameter('timenow', new \DateTime('now'))
                        ->setParameter('group_id', $options['my_group'])
                    ->orderBy('j.subscription_title', 'ASC');
                    }
        )
    );

$options['my_group']をグループの ID である実際の数値に変更すると、正しく表示されます。$options['my_group'] の代わりに id を実際に配置したときの html コード出力は次のとおりです。

<select id="fos_user_profile_form_my_group" name="fos_user_profile_form[my_group]" required="required"><option value="">Select group</option><option value="5">administrator</option><option value="2" selected="selected">instructor</option><option value="3">proofreader</option><option value="1">student</option><option value="4">translator</option></select>

私が間違っていることや行方不明になっていることについて何か助けはありますか?

----あなたの投稿を見ていなかったので、非常に遅れた応答についてお詫びします (しかし、ありがとうございます)。 showAction のコントローラー コードは次のとおりです。

public function showAction()
    {
        $user = $this->container->get('security.context')->getToken()->getUser();
        if (!is_object($user) || !$user instanceof UserInterface) {
            throw new AccessDeniedException('This user does not have access to this section.');
        }

        $myGroup = $this->getEntityManager()->getRepository('SDMarketplaceBundle:Groups')->findOneBy(array('id' => $user->getMyGroup())); //retrieve the group selected by this user
        $subscriptiontype = $this->getEntityManager()->getRepository('SDMarketplaceBundle:Subscriptiontype')->findOneBy(array('id' => $user->getSubscriptiontype())); //retrieve the subscription type title for this user
        $accounttype = $this->getEntityManager()->getRepository('SDMarketplaceBundle:AccountType')->findOneBy(array('id' => $user->getMyAccountType())); //retrieve the account type name for this user
        return $this->container->get('templating')->renderResponse('FOSUserBundle:Profile:show.html.'.$this->container->getParameter('fos_user.template.engine'), 
        array(
            'user' => $user, 
            'myGroup' => $myGroup,
            'subscriptiontype' => $subscriptiontype->getSubscriptionTitle(),
            'accounttype' => $accounttype->getAccountName(),
            'statusCode' => $user->getStatusName($user->getStatusCode())
        ));
    }
4