Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
4401 Visualizzazioni

I was trying to figure out how to stop a t-foreach loop after a certain amount of runs


f.e.: I want to print my 5 latest products with all varibales

" t-as="product">



Right now, it runs through all of my products, but i want to stop the list after 5 products.

Is there a possibility

Avatar
Abbandona
Risposta migliore

you can use t-set / t-value to save any value.
then in for loop you can increment this value and use t-if against this.
but this will iterate through all products but display only 5.



Avatar
Abbandona
Risposta migliore

Use line_index which comes with t-foreach. The index is 0 based, so subtract 1

t-if="line_index < 4"

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
lug 24
8780
1
mar 15
17612
1
dic 23
2577
1
lug 25
1712
1
mag 25
1708