我想使用" entity"作为我的表单中的字段类型,并在下拉列表中显示记录名称,并将所选选项的ID保存到数据库中。
这是我的FormType:
namespace Acme\DemoBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Doctrine\ORM\EntityRepository;
use Acme\DemoBundle\Entity\Person;
class ContactType extends AbstractType
{
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('subject')
->add('content')
->add('personid','entity', array(
'class' => 'Acme\DemoBundle\Entity\Person',
'query_builder' => function(EntityRepository $repository) {
return $repository->createQueryBuilder('q');
}))
;
}
/**
* @param OptionsResolverInterface $resolver
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Acme\DemoBundle\Entity\Contact'
));
}
/**
* @return string
*/
public function getName()
{
return 'acme_demobundle_contact';
}
}
它从数据库加载记录列表,并在下拉列表中显示它们,并在html表单的标记中显示正确的选项和值(记录的id),但不保存选项的值(id记录)到数据库。
如果我使用_toString(),Symfony不会显示任何错误但会保存" 0"而不是id,如果我不使用_toString()并设置"' property' => ' name',",它显示以下错误:
ContextErrorException: Catchable Fatal Error: Object of class <Path to Entity> could not be converted to string in /symfony/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php line 855
我在这里关注了Symfony的文档:http://symfony.com/doc/current/reference/forms/types/entity.html但是找不到解决方案。
有什么问题?
答案 0 :(得分:1)
请粘贴整个表单类,我可以为您修复它。同时,你不应该与普通的同事一起工作,你应该与协会合作。
已更新*
public function setPerson(Person $person)
{
$this->person = $person;
return $this;
}
另外请确保您正确设置了ORM(Contact.orm.xml),例如:
<many-to-one field="person" target-entity="Your\Bundle\Entity\Person">
<join-columns>
<join-column name="idp" referenced-column-name="id"/>
</join-columns>
</many-to-one>
答案 1 :(得分:0)
问题出在您的Acme \ DemoBundle \ Entity \ Person实体中。表单需要以某种方式表示每个Person实体,因此您需要一个魔术方法。
请将此方法添加到实体:
public function __toString() {
return $this->getName(); // You should return whatever field you feel is needed
}
这种方法是一种神奇的方法。可以找到更多信息here
答案 2 :(得分:0)
解决了!
对于可能遇到同样问题的其他朋友,我在这里解释一下:
错误发生在我的实体关系映射中。
我遵循了这个文档:
http://symfony.com/doc/current/book/doctrine.html#relationship-mapping-metadata
并更改了注释和yml配置,然后执行了这个命令行:
php app/console doctrine:generate:entities Acme
现在它运作正常!