1
我無法在控制器內持久保存多個實體。我只能保存最後一個。在symfony2中保留多個實體
我的代碼:
$product = new Product();
$names = ['yellow', 'blue', 'red']; // save these to the table
foreach ($name as $name) {
$product->setName($name);
$em->persist($product);
// $em->flush(); // doesn't work either
}
$em->flush();
我使用Symfony的2.7
喔,謝謝,現在的作品...很簡單:) –