BackboneJS - listenToOnce 事件


描述

它與 listenTo 事件相同,但導致僅在刪除回撥函式前只發生一次 listento 偵聽。

語法

object.listenToOnce(other, event, callback)

引數

  • other − 它定義另一個物件的名稱。

  • event − 它繫結物件。

  • callback − 它是對程式碼的引用,並以物件作為上下文被呼叫。

示例

<!DOCTYPE html>
<html>
   
   <head>
      <title>Event Once Example</title>
      <script src = "https://code.jquery.com/jquery-2.1.3.min.js"
         type = "text/javascript"></script>
      
      <script src = 
         "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"
         type = "text/javascript"></script>
      
      <script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
         type = "text/javascript"></script>
   </head>
   
   <body>
      <script type = "text/javascript">
      
         //Create an object 'myVal' and 'myVal1' and extend them using Backbone.Events method
         var myVal = _.extend({name:'Saurav Ganguly'}, Backbone.Events);
         var myVal1 = _.extend({name:'Sachin Tendulkar'}, Backbone.Events);

         //created the 'listenMe' callback function and invoked when one object listen to 
         //particular event on another object
         var listenMe = function() {
            document.write("The value is: ");
            document.write(this.name);
         };

         //The object 'myVal1' listen once for the 'listenMe' event triggered on object 'myVal'
         myVal1.listenToOnce(myVal, 'listenMe', listenMe);

         //The 'myVal' has no listenMe event and display the value of 'myVal1'
         myVal.trigger('listenMe');
      </script>
      
   </body>
</html>

輸出

讓我們執行以下步驟來了解上述程式碼如何工作 −

  • 將上述程式碼儲存在 listentoonce.htm 檔案中。

  • 在瀏覽器中開啟此 HTML 檔案。

backbonejs_events.htm
廣告
© . All rights reserved.