我會嘗試驗證,如果一個變量POST存在,但我的功能無法識別。Symfony2:我如何得到,如果變量帖子存在
$request = $this->get('request');
if($request->has('variable')){
// do something
}
但是函數有沒有實現請求,但我已經看到的是實現到parameterBag。 所以我不知道如何使用parameterBag。
我已經嘗試在谷歌搜索,但所有的解決方案是使用
"$request->has('variable')"
or
$request->hasParameter('variable')
但和hasParameter不是要求的功能...
感謝您的幫助,
問候,
Jérôme
語法有點奇怪:$ request-> request-> has('xxx')。第二個請求實際上是包含任何發佈數據的參數包。 – Cerad 2014-09-22 15:23:07