0
我對流星火焰很陌生。我想知道如何在meteorjs的特定迭代次數之後顯示某些內容(廣告)。有任何想法嗎?提前致謝。#each MeteorJs每第n次迭代後的展示廣告
我對流星火焰很陌生。我想知道如何在meteorjs的特定迭代次數之後顯示某些內容(廣告)。有任何想法嗎?提前致謝。#each MeteorJs每第n次迭代後的展示廣告
那麼在js helper中做什麼呢?我是這樣做的。
Template.foo.helpers({
stuffWithAds : function(){
col = GivenCollection.find().fetch();
toTemplate = [];
for(i=0; i<col.length; i++){
toTemplate.push(col[i]);
if (i % 2 != 0){
toTemplate.push('whatever you want to insert');
}
}
return toTemplate; }
});
這插入任何你想要的2個元素後。