在 Twig 或 PHP 模板中访问请求
在 Twig 模板中,Request 对象可在
{{ app.request }}
如果你想在 Twig 中显示请求方法,请尝试以下方法:
<p>Request method: {{ app.request.method }}</p>
在 PHP 模板中
<p>Request method: <?php echo $app->getRequest()->getMethod() ?></p>
在 Twig 模板中,Request 对象可在
{{ app.request }}
如果你想在 Twig 中显示请求方法,请尝试以下方法:
<p>Request method: {{ app.request.method }}</p>
在 PHP 模板中
<p>Request method: <?php echo $app->getRequest()->getMethod() ?></p>