ฉันจะเคลียร์ setInterval ภายในฟังก์ชันได้อย่างไร


163

โดยปกติฉันจะตั้งช่วงเวลาให้กับตัวแปรแล้วล้างออกเหมือนvar the_int = setInterval(); clearInterval(the_int);แต่เพื่อให้โค้ดของฉันทำงานฉันวางมันลงในฟังก์ชั่นนิรนาม:

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

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

intervalTrigger();

ฉันจะล้างสิ่งนี้ได้อย่างไร ฉันให้มันยิงและพยายามvar test = intervalTrigger(); clearInterval(test);ที่จะให้แน่ใจ แต่นั่นไม่ได้

โดยทั่วไปฉันต้องการสิ่งนี้เพื่อหยุดเรียกเมื่อ Google แผนที่ของฉันถูกคลิกเช่น

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

คำตอบ:


263

setIntervalวิธีการส่งกลับจับที่คุณสามารถใช้เพื่อล้างช่วงเวลาที่ หากคุณต้องการให้ฟังก์ชันส่งคืนคุณเพียงส่งคืนผลลัพธ์ของการเรียกเมธอด:

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

จากนั้นล้างช่วงเวลา:

window.clearInterval(id);

2
หมายเหตุ: คุณไม่จำเป็นต้องอ้างอิงขอบเขตทั่วโลก ทำงานได้เช่นเดียวกับsetInterval 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);
  }
}


-4

วิธีที่ง่ายที่สุดที่ฉันคิดได้: เพิ่มชั้นเรียน

เพียงแค่เพิ่มคลาส (ในองค์ประกอบใด ๆ ) และตรวจสอบภายในช่วงเวลาถ้ามันมี ฉันเชื่อว่านี่เป็นสิ่งที่น่าเชื่อถือปรับแต่งและข้ามภาษาได้มากกว่าวิธีอื่นใด

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>

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.