私はSilexを1日使用していますが、最初の「ばかげた」質問があります。私が持っている場合:
$app->get('/cities/{city_id}.json', function(Request $request, $city_id) use($app) {
....
})
->bind('city')
->middleware($checkHash);
ミドルウェアに含まれるすべてのパラメーター(city_id)を取得したい:
$checkHash = function (Request $request) use ($app) {
// not loading city_id, just the parameter after the ?
$params = $request->query->all();
....
}
では、ミドルウェア内でcity_id(パラメーター名とその値の両方)を取得するにはどうすればよいですか。30のアクションが必要になるので、使用可能で保守可能なものが必要です。
私は何が欠けていますか?
どうもありがとう!
解決
$request->attributesのこれらの追加パラメーターを取得する必要があります
$checkHash = function (Request $request) use ($app) {
// GET params
$params = $request->query->all();
// Params which are on the PATH_INFO
foreach ( $request->attributes as $key => $val )
{
// on the attributes ParamaterBag there are other parameters
// which start with a _parametername. We don't want them.
if ( strpos($key, '_') != 0 )
{
$params[ $key ] = $val;
}
}
// now we have all the parameters of the url on $params
...
});