Symfony2 / Twig jquery扩展模板

时间:2013-12-12 16:12:03

标签: jquery templates symfony twig

我有扩展模板的问题,css一直有效,但如果我t have extends template, jquery is works, but if I have extends template, jquery is doesn没有工作,我的jquery有问题,这很奇怪......

index.html.twig

http://pastebin.com/uBxZebHX

index2.html.twig

http://pastebin.com/n3Dr8xBq

如果我添加{%extends'BloggerBlogBu​​ndle:Admin:index.html.twig'%},一切正常,除了jquery ...; /

1 个答案:

答案 0 :(得分:0)

解决方案很简单,只需在子模板的javascripts块中调用{{parent()}}

{% block javascripts %}
        {{ parent() }} 

{%endblock%}

因为当您在子模板中调用块并且它覆盖了父块的内容时,您会调用此{{parent}}

我希望我能理解你网页的情况。如果不只是告诉。