我想从两个包含变量值的列表中动态填充一个模板。
有人可以告诉我,我怎么能做到这样的事情:
current_task_resources_types = ["image", "html"]
current_task_resources_names = ["elephant.png", "index.html"]
"task": [
{% for index in current_task_resources.length %}
{"type": "{{ current_task_resources_types.index }}", "url": "{{ current_task_resources_names.index }}"},
{% endfor %}
],