Symfony2表单集合allow_add和allow_delete null错误(Silex)

时间:2013-10-20 07:15:29

标签: php forms symfony silex

我在使用添加/删除表格集合的Symfony食谱时遇到了问题。请参阅:http://symfony.com/doc/current/cookbook/form/form_collections.html

现在,出于某种原因,如果我动态添加表单行但不填写任何字段,我会收到以下错误:

ContextErrorException: Catchable Fatal Error: Argument 1 passed to Project::addTask() must be an instance of Task, null given in D:\web_workspace\wedding\src\testapp.php line 82

我希望人们能够在表单中有空行,这些行将被忽略。例如,如果您单击“添加任务”几次,但不填写最后一行,则仍应提交表单,并且应忽略最后一行。

我创建了一个非常简单的Silex演示版,只适用于几个文件。我将在这里重点介绍它,但完整的例子就在这里,可以通过编辑器添加Silex来运行:https://gist.github.com/mattsnowboard/7065865

我有以下模型(仅Project,其中包含Task s的描述和集合

class Task
{
    protected $name;

    public function getName()
    {
        return $this->name;
    }

    public function setName($name)
    {
        $this->name = $name;
        return $this;
    }
}

class Project
{
    protected $description;

    protected $tasks;

    public function __construct()
    {
        $this->tasks = array();
    }

    public function getDescription()
    {
        return $this->description;
    }

    public function setDescription($description)
    {
        $this->description = $description;
        return $this;
    }

    public function getTasks()
    {
        return $this->tasks;
    }
    public function addTask(Task $task)
    {
        if (!is_null($task) && !in_array($task, $this->tasks)) {
            $this->tasks[] = $task;
        }
        return $this;
    }
    public function removeTask(Task $task)
    {
        if (!is_null($task)) {
            $this->tasks = array_diff($this->tasks, array($task));
        }
        return $this;
    }
}

我的表格如下

class TaskType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('name', 'text', array(
            'required' => false
        ));
    }

    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => '\Task',
        ));
    }

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

class ProjectType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('description', 'text', array())
            ->add('tasks', 'collection', array(
                'type' => new TaskType(),
                'allow_add'    => true,
                'by_reference' => false,
                'allow_delete' => true,
                'required' => false
            ))
            ->add('submit', 'submit')
        ;
    }

    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => '\Project',
        ));
    }

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

控制器将一些测试数据添加到表单中,并在提交数据时打印数据:

$app->match('/', function (Request $request) use ($app) {
    $project = new Project();

    // dummy code
    $task1 = new Task();
    $task1->setName('A Task');
    $project->addTask($task1);
    // end dummy code

    $form = $app['form.factory']->create(new ProjectType(), $project);

    $form->handleRequest($request);

    if ($form->isValid()) {
        $data = $form->getData();
        $debug = print_r($data, true);
        echo $debug;
    }

    return $app['twig']->render('test.html.twig', array(
        'form' => $form->createView(),
    ));
})
->method('GET|POST');

视图主要是这个,以及来自cookbook的javascript示例

{{ form_start(form) }}

    {{ form_row(form.description) }}

    <h3>Tags</h3>
    <ul class="tasks" data-prototype="{{ form_widget(form.tasks.vars.prototype)|e }}">
        {# iterate over each existing tag and render its only field: name #}
        {% for task in form.tasks %}
            <li>{{ form_row(task.name) }}</li>
        {% endfor %}
    </ul>

    {{ form_widget(form.submit) }}
{{ form_end(form) }}

我只是错过了什么?这是一个错误吗?我觉得这个非常接近食谱的例子应该很容易工作......

已更新:正在删除"allow_deleted"并未解决此问题。

1 个答案:

答案 0 :(得分:4)

抱歉,我发现,collection类型不应该'required' => false

    $builder->add('description', 'text', array())
        ->add('tasks', 'collection', array(
            'type' => new TaskType(),
            'allow_add'    => true,
            'by_reference' => false,
            'allow_delete' => true,
            'required' => false
        ))

应该是

    $builder->add('description', 'text', array())
        ->add('tasks', 'collection', array(
            'type' => new TaskType(),
            'allow_add'    => true,
            'by_reference' => false,
            'allow_delete' => true
        ))