在我的app.js中,我有这个:app.locals.testvalue = "lolo"
在我的macro.html中,我有:{% macro powertestvalue(x) %} <p> {{ x }} : {{ testvalue }}</p>{% endmacro %}
问题是我只能在“macro.html”中使用powertestvalue宏,原因如下:
我该如何处理这个问题?
答案 0 :(得分:0)
您可能会觉得这很有用:http://jinja.pocoo.org/docs/2.9/templates/#import-context-behavior
尝试:
{% from 'macro.html' import powertestvalue with context %}