-1

我有一个基于时间的模板:

{{hourly}}
    <li class='time' {{#if time}} {{timeHour time @index}} ... > </li>
{{/hourly}}

和 JS:

helpers.timeHour = function(epochTime, index) {

   .
   .
 if(epochTime < currentEpochTime) {
     // SKIP LOOP - Go to Next loop value for Time
 }

如果纪元时间小于当前时间,我想跳过循环并显示下一个纪元时间。如何跳过此迭代的循环?返回 "",发送并显示空 li 值

4

1 回答 1

3

您可以使用 abreak;来中断迭代循环或“继续;” 跳过当前迭代

helpers.timeHour = function(epochTime, index) {

while(epochTime < currentEpochTime) {
 // SKIP LOOP - Go to Next loop value for Time
 continue;
}
于 2016-08-01T07:59:05.043 回答