2016-11-04 45 views

回答

2

使用{{ app.environment }}

试试这个:

{% if app.environment == 'dev' %} 
    {% javascripts '@AppBundle/Resources/public/js/*' %} 
    <script src="{{ asset_url }}"></script> 
    {% endjavascripts %} 
{% endif %} 
+0

谢谢你,这就是我所需要的。 – WindBridges

相关问题