У меня есть эти сущности в моей Symfony EntityBundle:
кулак Organization.php
:
class Organization
{
/**
* @var integer
*
* @ORM\Column(name="organization_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
* @Assert\Type(
* type="string",
* message="The value {{ value }} is not a valid {{ type }}."* )
* @Assert\NotNull()
* @Assert\NotBlank()
* @ORM\Column(name="organization_name", length=255)
*/
protected $name;
/**
* @var Address
*
* @ORM\OneToOne(targetEntity="Address", inversedBy="organization", cascade={"persist"})
* @ORM\JoinColumn(name="address_id", referencedColumnName="address_id")
*/
protected $address;
/**
* Set address
*
* @param \MyNamespace\EntityBundle\Entity\Address $address
*
* @return Organization
*/
public function setAddress(\MyNamespace\EntityBundle\Entity\Address $address = null)
{
$this->address = $address;
$address->setOrganization($this);
}
/**
* Get address
*
* @return \MyNamespace\EntityBundle\Entity\Address
*/
public function getAddress()
{
return $this->address;
}
}
Во-вторых, Address.php
:
class Address
{
/**
* @var integer
*
* @ORM\Column(name="address_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
* @Assert\Length(
* max = 5,
* maxMessage = "Votre numéro de rue doit avoir maximum {{ limit }} chiffres"* )
* @Assert\NotNull()
* @Assert\NotBlank()
* @ORM\Column(name="street_number", type="integer")
*/
protected $streetNumber;
/**
* @Assert\Type(
* type="string",
* message="The value {{ value }} is not a valid {{ type }}."* )
* @Assert\NotNull()
* @Assert\NotBlank()
* @ORM\Column(name="street_name", length=255)
*/
protected $streetName;
/**
* @var \Doctrine\Common\Collections\Collection
*
* @ORM\OneToOne(targetEntity="Organization", mappedBy="address")
*/
protected $organization;
/**
* Set organization
*
* @param \MyNamespace\EntityBundle\Entity\Organization $organization
*
* @return Address
*/
public function setOrganization(\MyNamespace\EntityBundle\Entity\Organization $organization = null)
{
$this->organization = $organization;
return $this;
}
/**
* Get organization
*
* @return \MyNamespace\EntityBundle\Entity\Organization
*/
public function getOrganization()
{
return $this->organization;
}
/**
* Add organization
*
* @param \MyNamespace\EntityBundle\Entity\Organization $organization
* @return Address
*/
public function addOrganization(\MyNamespace\EntityBundle\Entity\Organization $organization)
{
$this->organization[] = $organization;
$organization->setOrganization($this);
return $this;
}
}
Это ваш контроллер для сохранения данных в виде встраивания:
public function RegistrationAction()
{
$organization = new Organization();
$form = $this->createForm(new OrganizationType(), $organization)
->add('save', 'submit', array('label' => 'Create'));
$request = $this->getRequest();
if( $request->isMethod('POST') ) {
$form->bind($request);
if( $form->isValid() ) {
$em = $this->getDoctrine()->getManager();
$em->persist($organization);
$em->flush();
return $this->redirectToRoute('homepage');
}
}
return $this->render('MyBundle:MyFolder:Registration.html.twig', array(
'form' => $form->createView(),
));
}
Вот мой тип формы OrganizationType.php
:
$builder
->add('name')
/* ... the other fields ... */
->add('address', 'collection', array(
'type' => new AddressType(),
'allow_add' => true,
'allow_delete' => false,
'by_reference' => false,
'mapped' => true,
));
}
И, наконец, мой вид веточки для отображения формы:
<div>
{{ form_start(form, {'action': path('path_action'), 'method': 'POST'}) }}
{{ form_errors(form) }}
{{ form_row(form.name) }}
{# .. the other fields ...#}
{{ form_row(form.address.vars.prototype) }}
{{ form_end(form) }}
</div>
Все работает хорошо, за исключением случаев, когда я отправляю форму.
Эта ошибка произошла:
Исправляемая фатальная ошибка: аргумент 1 передан
MyNamespace \ EntityBundle \ Entity \ Organization :: setAddress () должен быть
экземпляр MyNamespace \ EntityBundle \ Entity \ Address, заданный массив,
называется в
C: \ WAMP \ WWW \ MyApp \ поставщика \ Symfony \ Symfony \ SRC \ Symfony \ Component \ PropertyAccess \ PropertyAccessor.php
в строке 502 и определено,
‘C: \ WAMP \ WWW \ MyApp \ SRC \ MyNamespace \ EntityBundle \ Entity \ Organization.php’,
‘336’, массив (‘this’ => object (Organization))) в
src \ MyNamespace \ EntityBundle \ Entity \ Organization.php в строке 336
Как я могу это исправить?
Проблема здесь
->add('address', 'collection', array(
'type' => new AddressType(),
'allow_add' => true,
'allow_delete' => false,
'by_reference' => false,
'mapped' => true,
));
даже если это отношение oneToOne, вы установили тип атрибута формы как коллекцию, поэтому, когда Symfony анализирует данные формы, он упаковывает адрес в массив, вы можете исправить это следующим образом:
->add('address', new AddressType());
Других решений пока нет …