Twig {%extends%}不传递变量

时间:2018-03-29 11:02:16

标签: twig kohana

我在树枝上使用Kohana并在模板中扩展模板。我的模板中提供的Param不会传递给扩展模板。如何将所有或至少该值传递给扩展模板?

{% extends 'customer/main' %}

{% block content %}
  Will show the content of my_param:{{ my_param }}
{% endblock content %}

文件:customer / main.html

{% extends 'main' %}

{% block middle %}
  Will NOT show the content of my_param:{{ my_param }}
  {% block content %}{% endblock content %}
{% endblock middle %}

0 个答案:

没有答案