的routing.yml
thisismyroute:
path: thisroute/to/{id}
defaults: { _controller: MyBundle:Default:createRoutePage }
requirements:
page: \d+
控制器
/**
* Template Select
* @Route("/to/{id}",name="thisismyroute", requirements={"id": "\d+"})
* @Method({"POST"})
*/
public function createRoutePage($id){
/* code here */
}
,當我訪問www.mysite.com/app_dev.php/thisroute/to/asdfasdf它的Symfony路由標註要求訪問時,不應該因爲要求設置爲整數。沒有工作
在我routing_dev.yml我也行
_main: 資源:使用routing.yml
是我也嘗試過「id」=「\ d +」它仍然進入頁面時,它不應該是我沒有任何其他路線去/ – Andrei
你能看到我的更新? – kapa89
耶謝謝大聲笑我使用了錯誤的變量謝謝! – Andrei