Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
twig テンプレートで kernel.root_dir を取得する必要があります。ここで解決策を見つけましたが、機能しません。このクラスに存在しないメソッド Kernel に関するエラーが発生します。本当に GlobalVariables クラス メソッド getKernel() には存在しません。twig テンプレートで root_dir を取得する方法を教えてください。
(PSいいえ、コントローラーから取得できません。また、コンテナーパラメーターとして取得できません)
config.yml にグローバル変数を追加することをお勧めします。
# app/config/config.yml twig: # ... globals: kernelRootDir: "%kernel.root_dir%"
次に、{{ kernelRootDir }}ビューで使用します。
{{ kernelRootDir }}