我写了一个显示推文的小插件。以下是循环和显示推文的代码。
<script id="tweets-template" type="text/x-handlebars-template" >
{{#each this}}
<li>
<p>{{tweet}}</p>
<span id="author">{{author}}<span/>
</li>
{{/each}}
</script>
但我想做的是将推文的数量限制为 5 或 10。但循环列出了所有可用的推文。如何限制 for 循环中的推文。像
for(i=0;i<5;i++){display the tweets}