跳至內容
選單
此問題已被標幟
2 回覆
4415 瀏覽次數

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

頭像
捨棄
最佳答案

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.



頭像
捨棄
最佳答案

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

t-if="line_index < 4"

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
7月 24
8788
1
3月 15
17619
1
12月 23
2579
1
7月 25
1720
1
5月 25
1722