我使用symfony来构建如下函数: 我有产品和运输方式。 一个产品可以有更多的ShippingWays,一个ShippingWay只能匹配一个产品。
ProductEntity:
/**
* @ORM\OneToMany(targetEntity="ShippingWay",mappedBy="product")
*/
private $shippingWays;
ShippingWay实体:
/**
* @ORM\ManyToOne(targetEntity="Product", inversedBy="shippingWays")
* @ORM\JoinColumn(name="product_id", referencedColumnName="id")
**/
private $product;
然后我构建了ProductType和ShippingWayType。
ProductType
->add('shippingWays', EntityType::class, array(
'label' => ' Shipping Ways',
'translation_domain' => 'forms',
'class' => 'CoreBundle:ShippingWay',
'choice_label' => 'name',
'multiple' => true,
'required' => false,
))
ProductController的
/**
* @Route("/admin/product/new", name="admin_product_new")
* @Template()
*/
public function newAction(Request $request)
{
$product = new Product();
$shippingWay= new ShippingWay();
$form = $this->createForm(ProductType::class, $product);
$shippingForm = $this->createForm(ShippingWayType::class, $shippingWay);
if ($request->isMethod('POST')) {
$form->handleRequest($request);
if ($form->isValid()) {
$em = $this->getDoctrine()->getManager();
$em->persist($product );
$em->flush();
return $this->redirect($this->generateUrl('admin_product'));
}
}
return(array('form' => $form->createView(),'users'=>$users,'shippingForm '=>$shippingForm ->createView()));
}
目前我有两个问题:
有人可以给我一些建议和参考吗? 非常感谢你。
答案 0 :(得分:1)
对于您的第一个问题:在 ProductType 中,您不应将EntityType用于ShippingWay,因为它只显示与ShippingWay实体相关的现有条目列表。
如果你想添加/编辑,最好使用CollectionType,如下所示:How to Embed a Collection on a Symfony Form
在您的情况下,您的 ProductType 将是:
->add('shippingWays', CollectionType::class, array(
'label' => ' Shipping Ways',
'translation_domain' => 'forms',
'entry_type => 'CoreBundle:ShippingWay',
'choice_label' => 'name',
'allow_add' => true,
'allow_delete' => true
))