0

我有一个实体类型表单,其中列出了当前用户的所有朋友。这例如用于创建新组。现在我想使用相同的表单将人员添加到同一个组,因此 Choice 字段应该显示当前用户的所有尚未在组中的朋友。我以为我只是使用表单事件来删除组中已经存在的选项(用户)。

我的监听器看起来像这样:class FriendSelectListener implements EventSubscriberInterface {

public static function getSubscribedEvents() {
    // Tells the dispatcher that we want to listen on the form.pre_set_data
    // event and that the preSetData method should be called.
    return array(FormEvents::PRE_SET_DATA => 'preSetData');
}

public function preSetData(FormEvent $event) {
    $betRound = $event->getData();
    $form = $event->getForm();
    $groupForm = $form->get('userGroup');
    $usersForm = $groupForm->get('users');

    foreach($betRound->getUserGroup()->getUsers() as $user){
        if($usersForm->has($user->getId())){
            $usersForm->remove($user->getId());
        }
    }
}

}

但我无法渲染它,因为在我的测试中,我删除了 id 为 2 的用户,然后在渲染时收到以下错误消息:

/var/lib/stickshift/1ed1210eec124c179c45aac4ad484afd/app-root/data/269891/src/Strego/UserBundle/Resources/ 类型“Symfony\Component\Form\FormView”的对象(使用 ArrayAccess)中的键“2”不存在第 5 行的views/Form/selectFriends.html.twig

更新: 这可能与我的观点有关:{% for id, choice in choice %}

    {% set user = choice.data %}
    <label> 
    <div class="people-list people-choose unselected" style="width:270px;">
    <img src="{{ user.profilePic  | imagine_filter('profile_thumb') }}" class="img-polaroid" alt="{{ user.nickname }}">
    {#<img src="{{ asset('bundles/stregoapp/img/profile-thumb-90x90.png') }}" alt="Profilbild" class="img-polaroid">#}
    <p>{{ form_widget(form[id]) }}&nbsp;<span class="label">einladen</span></p>
    <h3>{{ user.nickname }}</h3>
    <h3><small>{{ user.firstName }} {{ user.lastName }}</small></h3>
    </div>
    </label>

{% endfor %}

对我来说,似乎我只删除了表单元素,但没有删除选择。

4

1 回答 1

0

我发现了问题,这确实是我的看法。一旦我停止迭代选项但使用我的表单元素的子元素,它就可以工作:

{% for child in form %}

    {% set user = choices[child.vars.value].data %}

    <label> 
    <div class="people-list people-choose unselected" style="width:270px;">
    <img src="{{ user.profilePic  | imagine_filter('profile_thumb') }}" class="img-polaroid" alt="{{ user.nickname }}">

    <p>{{ form_widget(child) }}&nbsp;<span class="label">einladen</span></p>
    <h3>{{ user.nickname }}</h3>
    <h3><small>{{ user.firstName }} {{ user.lastName }}</small></h3>
    </div>
    </label>


{% endfor %}
于 2013-08-15T19:43:41.103 回答