0

我正在使用 Symfony 2.3.1 版和 SmartyBundle 1.2.0 版。

我按照https://smartybundle.readthedocs.org/en/latest/installation.html上的步骤 2.3 和 2.4 进行操作。

但是一旦我在 AppKernel.php 中启用 SmartyBundle,我在 app/console 中就会出现这个错误:

You have requested a non-existent parameter "assetic.use_controller".

这是我的 config.yml 的摘录:

# Assetic Configuration
assetic:
    debug:          %kernel.debug%
    use_controller: false
    bundles:        [ ]
4

1 回答 1

0

我有同样的问题。

您需要确保 SmartyBundle 在 AppKernel registerBundles 中的 AsseticBundle 之后出现

于 2014-01-04T13:41:27.767 回答