if ($u = $this->generateUrl('_'.$specific.'_thanks'))
return $this->redirect($u);
else
return $this->redirect($this->generateUrl('_thanks'));
我不想重定向到_specific_thanks
url時它存在。那麼如何檢查一個url是否存在?重定向之前檢查網址symfony2
當我這樣做,我有這個錯誤:
Route "_specific_thanks" does not exist.
完美的它爲我工作!只要'$ this-> container-> get('router');'用symfony 2.1.4 – Harold
太好了!我更新了答案,以便它符合sf 2.1.4 :) $ this-> get('router')也可以工作,我認爲。 –