CMS Development

tjoyce
Trendsetter/-in | Elite Partner
Trendsetter/-in | Elite Partner

How to change a variable outside of a for loop? Scoping Issues

lösung

This question is extremely common; How do I use a counter in a variable that was created outside of a for loop. @Jsum did a good job answering that question here. I just wanted to expand on it and make this post more "searchable" by users trying to accomplish the same thing. 

{# create the counter #}
{% set counter = {'value': 1} %}

{# create a macro that will change the counter, when called #} {% macro incrementDecrementCounter(valuechange) %} {% set changingCounter = counter.update({'value': counter.value + valuechange}) %} {% endmacro %}

{# the for...loop #} {% for n in range(10) %} {% if n % 3 == 0 %}

{# call the macro to update the counter #} {{incrementDecrementCounter(-1)}} {% else %}

{# call the macro to update the counter #} {{incrementDecrementCounter(1)}} {% endif %} <p>The loop index is: {{n}}, while the counter is: {{counter.value}}</p> {% endfor %}

@Anton@dennisedson@Stephanie-OG

1 Akzeptierte Lösung
jennysowyrda
Lösung
Community-Manager/-in
Community-Manager/-in

How to change a variable outside of a for loop? Scoping Issues

lösung
4 Antworten
mIIwaukee
Mitwirkender/Mitwirkende | Diamond Partner
Mitwirkender/Mitwirkende | Diamond Partner

How to change a variable outside of a for loop? Scoping Issues

lösung

Thanks everyone, here's a non-array approach.

{% set thisClient = {'name': 'none' } %}
{% for client in dynamic_page_hubdb_row.client %}
{% do thisClient.update({'name': client.name }) %}
{% endfor %}

{{thisClient.name}}

 

0 Upvotes
matt_scott
Stratege/Strategin | Platinum Partner
Stratege/Strategin | Platinum Partner

How to change a variable outside of a for loop? Scoping Issues

lösung

I didn't think of using a macro, that's a nice solution!

I found a hacky way to do something similar but different
This was some code I used to build a dictionary:
The ‘.append’ function actually appends to the global dictionary ‘vars’, the variable inside the set is irrelevant but is needed for the hubl to run

{% set vars = [] %}
{% for item in group %}
    {% set thisVariableDoesntDoAnything = vars.append(item.variable) %}
{% endfor %}

 

Matthew Scott
Head of Development | Hubspot Solutions Architect

B2B marketing agency: Specialist B2B content marketing and demand generation for SaaS vendors and HubSpot Users | Deeply Digital | HubSpot Partner since 2010


01926 334003

deeplydigital.co.uk

3 Morton Street, Leamington Spa, CV32 5SY, UK
matt_scott
Stratege/Strategin | Platinum Partner
Stratege/Strategin | Platinum Partner

How to change a variable outside of a for loop? Scoping Issues

lösung

Since writting the above I found the "do" function and hubspot have now added the "do" function to the docs so the code doesn't seem so hacky

{% set vars = [] %}
{% for item in group %}
    {% do vars.append(item.variable) %}
{% endfor %}
Matthew Scott
Head of Development | Hubspot Solutions Architect

B2B marketing agency: Specialist B2B content marketing and demand generation for SaaS vendors and HubSpot Users | Deeply Digital | HubSpot Partner since 2010


01926 334003

deeplydigital.co.uk

3 Morton Street, Leamington Spa, CV32 5SY, UK
jennysowyrda
Lösung
Community-Manager/-in
Community-Manager/-in

How to change a variable outside of a for loop? Scoping Issues

lösung

Thanks for sharing @tjoyce!