本文介绍了jina2内的包含语句,该语句使用变量作为包含的文件名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试这样做:

{% for a in as %}
{% include "{(a}}.jinja"%}
{% endfor %}

但是我遇到一个错误,找不到{a}.jinja.因此,它似乎没有屈服于变量.为什么?我该如何解决?

But i am getting an Error, that {a}.jinja is Not found.So it seems that it does Not substitude the Variable. Why? How can i fix this?

推荐答案

{%%}块中,我可以直接使用变量.这有效:

Inside the {%%} Block, i Can use variables directly. This Works:

{% include a + ".jinja" %}

这篇关于jina2内的包含语句,该语句使用变量作为包含的文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 23:34