Come posso cancellare questo setInterval all'interno di una funzione?


163

Normalmente, impostarei l'intervallo su una variabile e quindi lo deselezionerei come var the_int = setInterval(); clearInterval(the_int);ma per far funzionare il mio codice lo metto in una funzione anonima:

function intervalTrigger() {
  setInterval(function() {
    if (timedCount >= markers.length) {
      timedCount = 0;
    }

    google.maps.event.trigger(markers[timedCount], "click");
    timedCount++;
  }, 5000);
};

intervalTrigger();

Come posso cancellare questo? Ci ho provato e ho provato var test = intervalTrigger(); clearInterval(test);a esserne sicuro, ma non ha funzionato.

Fondamentalmente, ho bisogno di questo per interrompere l'attivazione dopo aver fatto clic sulla mia Google Map, ad es

google.maps.event.addListener(map, "click", function() {
  //stop timer
});

Risposte:


263

Il setIntervalmetodo restituisce un handle che è possibile utilizzare per cancellare l'intervallo. Se si desidera che la funzione la restituisca, è sufficiente restituire il risultato della chiamata del metodo:

function intervalTrigger() {
  return window.setInterval( function() {
    if (timedCount >= markers.length) {
       timedCount = 0;
    }
    google.maps.event.trigger(markers[timedCount], "click");
    timedCount++;
  }, 5000 );
};
var id = intervalTrigger();

Quindi per cancellare l'intervallo:

window.clearInterval(id);

2
nota: non è necessario fare riferimento all'ambito globale. setIntervalfunziona altrettanto bene window.setInterval.
Samy Bencherif,

10
// Initiate set interval and assign it to intervalListener
var intervalListener = self.setInterval(function () {someProcess()}, 1000);
function someProcess() {
  console.log('someProcess() has been called');
  // If some condition is true clear the interval
  if (stopIntervalIsTrue) {
    window.clearInterval(intervalListener);
  }
}

1
the_int=window.clearInterval(the_int);

-4

Il modo più semplice che mi viene in mente: aggiungere una classe.

Aggiungi semplicemente una classe (su qualsiasi elemento) e controlla all'interno dell'intervallo se è presente. Questo è più affidabile, personalizzabile e multilingue rispetto a qualsiasi altro modo, credo.

var i = 0;
this.setInterval(function() {
  if(!$('#counter').hasClass('pauseInterval')) { //only run if it hasn't got this class 'pauseInterval'
    console.log('Counting...');
    $('#counter').html(i++); //just for explaining and showing
  } else {
    console.log('Stopped counting');
  }
}, 500);

/* In this example, I'm adding a class on mouseover and remove it again on mouseleave. You can of course do pretty much whatever you like */
$('#counter').hover(function() { //mouse enter
    $(this).addClass('pauseInterval');
  },function() { //mouse leave
    $(this).removeClass('pauseInterval');
  }
);

/* Other example */
$('#pauseInterval').click(function() {
  $('#counter').toggleClass('pauseInterval');
});
body {
  background-color: #eee;
  font-family: Calibri, Arial, sans-serif;
}
#counter {
  width: 50%;
  background: #ddd;
  border: 2px solid #009afd;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  transition: .3s;
  margin: 0 auto;
}
#counter.pauseInterval {
  border-color: red;  
}
<!-- you'll need jQuery for this. If you really want a vanilla version, ask -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>


<p id="counter">&nbsp;</p>
<button id="pauseInterval">Pause/unpause</button></p>

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.