0

我会更改我的退货表格

我在树枝内创建带有循环的表单,我想更改名称和 ID 字段

例如

<input type="text" id="foo_1" name="foo_1[title]" maxlength="255">

我想像为 {{loop.index}} 形式的 id 添加一个索引

我可能需要向表单的构造函数传递一些东西,但我没有找到任何对我有帮助的东西

4

1 回答 1

1

现在我这样做:

我的控制器

foreach($fotos as $key => $foto){

            $array_fotos[] = array(
                "form" => $this->createForm(new \My\FotoBundle\Form\FotoType($key), $fotos[$key])->createView(),

            );
        }

在我的 FormType 我这样做

class FotoType extends AbstractType
{

    protected $key;

    public function __construct($chiave) {
        $this->key = $chiave;
    }

    .....


    public function getName()
    {
        return 'form_gestione_foto_'.$this->key;
    }
}
于 2013-04-05T10:34:03.953 回答