symfony2 プロジェクトで次の問題があります。
これは私のコントローラーのコードです
public function showCustomerAction($id) {
// retrieve the customer from the database
$em = $this->getDoctrine()->getManager();
$customer = $em->getRepository('VictorIoSiteBundle:Customer')->find($id);
//throw new \Exception($customer);
return $this->render('VictorIoSiteBundle:Site:viewCustomer.html.twig', array('customer' => $customer));
}
そして、私の小枝ビューのコード (非常に単純):
{% if customer is defined %}
<h3>Customer: {{ customer }} </h3>
{% endif %}
最後に私のrouting.yml
victor_io_site_show_customer:
pattern: /show-customer/{id}
defaults: { _controller: VictorIoSiteBundle:Site:showCustomer }
requirements:
id: \d+
今、私が進むとき
http://localhost/Garage/web/app_dev.php/show-customer/46
次のエラーが表示されます。
Variable " customer " does not exist in VictorIoSiteBundle:Site:viewCustomer.html.twig at line 2
500 Internal Server Error - Twig_Error_Runtime