发布于 2015-08-27 16:47:58 | 182 次阅读 | 评论: 0 | 来源: 网络整理
The empty_data
option allows you to specify an empty data set for your
form class. This empty data set would be used if you submit your form, but
haven’t called setData()
on your form or passed in data when you created
your form. For example:
public function indexAction()
{
$blog = ...;
// $blog is passed in as the data, so the empty_data
// option is not needed
$form = $this->createForm(new BlogType(), $blog);
// no data is passed in, so empty_data is
// used to get the "starting data"
$form = $this->createForm(new BlogType());
}
By default, empty_data
is set to null
. Or, if you have specified
a data_class
option for your form class, it will default to a new instance
of that class. That instance will be created by calling the constructor
with no arguments.
If you want to override this default behavior, there are two ways to do this.
One reason you might use this option is if you want to use a constructor
that takes arguments. Remember, the default data_class
option calls
that constructor with no arguments:
// src/AppBundle/Form/Type/BlogType.php
// ...
use SymfonyComponentFormAbstractType;
use AppBundleEntityBlog;
use SymfonyComponentOptionsResolverOptionsResolver;
class BlogType extends AbstractType
{
private $someDependency;
public function __construct($someDependency)
{
$this->someDependency = $someDependency;
}
// ...
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'empty_data' => new Blog($this->someDependency),
));
}
}
You can instantiate your class however you want. In this example, we pass
some dependency into the BlogType
when we instantiate it, then use that
to instantiate the Blog
class. The point is, you can set empty_data
to the exact “new” object that you want to use.
Using a closure is the preferred method, since it will only create the object if it is needed.
The closure must accept a FormInterface
instance as the first argument:
use SymfonyComponentOptionsResolverOptionsResolver;
use SymfonyComponentFormFormInterface;
// ...
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'empty_data' => function (FormInterface $form) {
return new Blog($form->get('title')->getData());
},
));
}