使用字符串连接变量并将其设置为新变量

时间:2018-05-25 13:54:26

标签: templates jinja2

我正在尝试设置变量,例如cmd = "echo 25",但它不起作用

{% set cmd = "echo {{ id }}" %}

请帮忙解决。

2 个答案:

答案 0 :(得分:1)

试试这个:

{% set testing = 'it worked' %}
{% set another = testing %}
{{ another }}

结果:

it worked

答案 1 :(得分:0)

我找到了;)

{% set cmd = "echo " ~ id %}