3
我試圖從Silex應用中的url中獲取參數。如何從Silex中的url中獲取參數
這裏是我的我的控制器的連接方法:
public function connect(Application $app)
{
$controllers = $app['controllers_factory'];
$controllers->get('/list/pois/{id}', array($this, 'actionPoisList'))
->before(array($this, 'controlerAuthentification'));
return $controllers;
}
在這裏,我試圖這樣做是爲了抓住這個參數:
/**
* @param Application $app
* @return \Symfony\Component\HttpFoundation\JsonResponse
*/
public function actionPoisList(Application $app){
return $app->json($app->escape($app['id']));
}
顯然,它不工作,所以任何替代請。由於
其完美的工作。多謝,夥計。 – KubiRoazhon