0

Symfony 2.1 ベータ 4

小枝テンプレートでフォームをレンダリングしているときに、form_widget または form_rest を使用しようとすると、「テンプレートのレンダリング中に例外がスローされました (「通知: 未定義のインデックス: MySite/vendor の親」) というエラーが表示されます。 /symfony/symfony/src/Symfony/Component/Form/FormView.php 行 308")" form_row を使用して手動でフォームを作成し、プロパティを更新することはできますが、csrf トークンが含まれていません。

EDIT 7/27 PropertyTypeフォームクラスのみを含めると、form_restが正常に機能するようです。AddressType を含めると、上記のエラーが発生します。

住所エンティティのフォームが埋め込まれたプロパティ (家) エンティティをレンダリングしています。

public function showAction( $property_id )
{
    $em = $this->getDoctrine()->getEntityManager();
    $property = $em->getRepository('MySystemBundle:Property')->find( $property_id );

    if( !$property ){
        throw $this->createNotFoundException('The requested property does not exist.');
    }       

    $form = $this->createForm(new PropertyType(), $property);

    $request = $this->get('request');

    if( $request->getMethod() == 'POST' ){
        $form->bind($request);

        if( $form->isValid() ){
            $em->persist($property);
            $em->flush();

            $this->get('session')->setFlash('notice', 'Your changes were saved!');
            return $this->redirect($this->generateUrl('system_propertyShow', 
                array('property_id' => $property_id)));
        }
    }

    $vars['property'] = $property;
    $vars['form'] = $form->createView();

    return $this->render('MySystemBundle:Property:show.html.twig', $vars);
}

私のPropertyTypeフォームクラス:

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class PropertyType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options) {
    $builder->add('purchaseAmount', 'text', array('label' => 'Purchase Amount', 'required' => false))
        ->add('depositAmount', 'text', array('label' => 'Deposit Amount', 'required' => false))
        ->add('additionalCostsAmount', 'text', array('label' => 'Additional Costs', 'required' => false))
        ->add('balanceAmount', 'text', array('label' => 'Balance', 'required' => false))
        ->add('dateBalanceDue', 'datetime', array('label' => 'Balance Due', 'widget' => 'single_text', 'required' => false))
        ->add('squareFootage', 'number', array('label' => 'Square Footage', 'required' => false))
        ->add('isOccupied', 'choice', array(
            'label' => 'Is Occupied?',
            'choices' => array('1' => 'Yes', '0' => 'No'),
            'required' => false))
        ->add('address', new AddressType());
}

public function getDefaultOptions(array $options)
{
    return array('data_class' => 'MySite\Bundle\SystemBundle\Entity\Property');
}

public function getName()
{
    return 'property';
}
}

編集 7/27: ここに私の AddressType クラスがあります:

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class AddressType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('line1', 'text', array('label' => 'Line 1'))
        ->add('line2', 'text', array('label' => 'Line 2', 'required' => false))
        ->add('line3', 'text', array('label' => 'Line 3', 'required' => false))
        ->add('city', 'text', array('label' => 'City'))
        ->add('township', 'text', array('label' => 'Township', 'required' => false))
        ->add('zipcode', 'text', array('label' => 'Zip'))
        ->add('state', new StateType());
}

public function getDefaultOptions(array $options)
{
    return array('data_class' => 'MySite\Bundle\SystemBundle\Entity\Address');
}

public function getName()
{
    return 'address';
}
}
4

2 に答える 2

3

Github https://github.com/symfony/symfony/issues/5121でこの問題の議論を発見し、確かに、php.ini ファイルで twig 拡張機能を無効にすると問題が解決しました。

于 2012-08-07T21:24:06.227 に答える
0

あなたのためのSpikeソリューションは、トークン入力を次のようにレンダリングすることです{{ form_widget(form._token) }}

于 2012-07-25T10:41:40.653 に答える