我想在 Symfony2 项目的树枝模板中嵌入带有资产的不同样式表文件。使用的样式表取决于用户的主题设置。
我用了
{% stylesheets
'@CuteFlowCoreBundle/Resources/public/css/application.css'
'@CuteFlowCoreBundle/Resources/public/css/theme/'~app.session.get('cuteflow_theme')~'/application.css'
%}
<link rel="stylesheet" href="{{ asset_url }}" type="text/css" media="all" />
{% endstylesheets %}
但这会引发错误:
Unexpected token "operator" of value "~" in "CoreBundle::layout.html.twig"
我也尝试了以下方法。但这也无济于事。
{% set theme = '@CuteFlowCoreBundle/Resources/public/css/theme/'~app.session.get('cuteflow_theme')~'/application.css' %}
{% stylesheets
'@CuteFlowCoreBundle/Resources/public/css/application.css'
theme
%}
<link rel="stylesheet" href="{{ asset_url }}" type="text/css" media="all" />
{% endstylesheets %}
任何想法如何做到这一点?