0

纠正我如果我错了,但不可能在继承布局的块之外使用 html 代码,对吗?

这就是我的意思

{# app/Resources/view/base.html.twig #}
<!DOCTYPE html>
......
<% block sidebar %>
<h1>...</h1>
<% endblock; %>

{# src/Acme/CoolBundle/Controller/page.html.twig #}
{% extends '::base.html.twig' %}

{% block sidebar %}
 {{ parent{} }}
 <p>Lorem ipsum bla bla.. </p> // This one  works and the paragraph is rendered
{% endblock }
<h3>Latest news</h3> // Here I get A template that extends another one cannot have a body in...
4

1 回答 1

0

你是对的(这次;))。在扩展其他模板的模板中,不可能将 html 放在块之外。

于 2013-10-03T13:59:54.840 回答