DougHenning1
3 years agoCommunity Manager
Re: Jinja Dynamic Variable Name using Loop Index
To reference the son1 and son2 fields using a variable, you need to refer to each as a['son1'] and a['son2']. Try this:
Hope that helps!
------------------------------
Doug Henning
------------------------------
"to": "bsp8bd9qp",
"data": [
{% for i in range(2) %}
{ "17": { "value" : "{{a['son'~loop.index]}}" } }
{% if loop.last == false %},{% endif %}
{% endfor %}
]
}
Hope that helps!
------------------------------
Doug Henning
------------------------------