2

How can I include a javascript file from my Bundle CompetitiongameBundle, in a twig file ? What does the asset function mean ?

4

1 回答 1

4

你不信任symfony 文档吗?

您还可以包含位于捆绑包的 Resources/public 文件夹中的资产。您需要运行 php app/console assets:install target [--symlink] 命令,它将文件移动(或符号链接)到正确的位置。(目标默认为“web”)。

<link href="{{ asset('bundles/acmedemo/css/contact.css') }}" type="text/css" rel="stylesheet" />

我不建议您链接捆绑中的单个资源 - 为此使用Assetic,可能会缩小它们。

于 2012-09-08T20:50:11.750 回答