如何处理与Twig的Doctrine关系

时间:2017-02-01 09:52:41

标签: symfony orm doctrine twig

我有两个实体CustomersLocations。它们处于ManyToOne关系(一个客户可以有多个位置)。

这是我定义关系的方式:

    class Customers { 
    /**
     * @ORM\Column(type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @ORM\Column(type="string", length=45)
     */
    private $name; 
    }

实体Locations

class Locations { 
/**
 * @ORM\Column(type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $id;

/**
 * @ORM\ManyToOne(targetEntity="Customers", inversedBy="id")
 * @ORM\JoinColumn(name="customers_id", referencedColumnName="id")
 */
private $customers_id;

/**
 * @ORM\Column(type="string", length=90)
 */
private $name;
}

我希望能够点击用户并在Twig模板中呈现与他关联的所有位置。这就是我现在这样做的方式,但我不确定这是正确的方法。 首先是控制器:

/**
* @Route("/showLocations/{id}", name = "show_locations")
* @Method("GET")
**/
public function showLocationsAction($id) {

    $repository = $this->getDoctrine()->getRepository('AppBundle:Locations');
    $locations = $repository->findBy(array('customer_id' => $id ));
    $repository = $this->getDoctrine()->getRepository('AppBundle:Customers');
    $customer = $repository->findOneById($id);

    if(!empty($locations)) {
    return $this->render("AppBundle:Default:showLocations.html.twig", array('locations' => $locations, 'customer' => $customer)); }

    else return new Response ("There are no locations to show");
}

这是树枝模板:

<p>Locations associated with {{customer.name}}</p>
<table id="table_id" class="display">
<thead>
    <tr>
        <th>Locations</th>
    </tr>
</thead>
<tbody>
    {% for locations in locations %}
    <tr>
        <td>{{ locations.name|e }}</td>
    </tr>
    {% endfor %}
</tbody>

有什么建议吗?谢谢!

1 个答案:

答案 0 :(得分:2)

到目前为止看起来很好。但$ customers_id的命名应仅为$ customer,因为Doctrine会自动获取相关客户并将其水合成一个对象。

然后,您可以使用{{ location.customer.name }}

获取并显示客户

$repository = $this->getDoctrine()->getRepository('AtlasBundle:Customers'); $customer = $repository->findOneById($id);

可以完全省略。