phalcon用变量扩展伏特,任何其他方式使其工作

时间:2016-07-01 05:57:18

标签: phalcon extends volt

context.getResources().getDisplayMetrics().widthPixels | heightPixels

{% extends "../../../views/"{{variable}}"/templates/one-column.volt" %}

或任何其他方式使其发挥作用。

如何让它像上面一样工作。有人可以帮帮我吗? 框架phalcon

1 个答案:

答案 0 :(得分:0)

如果您在扩展中使用变量或包含,则必须省略模板扩展名。在您的情况下,它是 .volt

试试这样:

{% extends "../../../views/"~ variable ~"/templates/one-column" %}

另一个例子:

// When using variable inside the include
{% set folderVar = 'partials' %}
{% include "_layouts/"~ folderVar ~"/header" %}

// Without using variable
{% include "_layouts/partials/header.phtml" %}

此行为的说明:https://docs.phalconphp.com/en/latest/reference/volt.html#include