EmberJS 處理用戶與操作的交互

2018-01-03 13:46 更新

處理用戶與操作的交互

{{action}}幫助器使元素與Web應(yīng)用程序中的組件交互。在這種情況下,動作在組件內(nèi)部直接發(fā)送到Ember.Component實例。

Ember.Component.extend({
   actions: {
      //do the stuff
   }
});

在上面的代碼中, actions helper直接在Ember.Component實例中定義。

例子

<!DOCTYPE html>
<html>
   <head>
      <title>Emberjs Handling User Interaction with Actions</title>
      <!-- CDN's-->
      <script src="/attachements/w3c/handlebars.min.js"></script>
      <script src="/attachements/w3c/jquery-2.1.3.min.js"></script>
      <script src="/attachements/w3c/ember.min.js"></script>
      <script src="/attachements/w3c/ember-template-compiler.js"></script>
      <script src="/attachements/w3c/ember.debug.js"></script>
      <script src="/attachements/w3c/ember-data.js"></script>
   </head>
   <body>
      <script type="text/x-handlebars" data-template-name="index">
         <h1>Click on button to toggle:</h1>
         {{my-comp title="Click Me"}}
      </script>

      <script type="text/x-handlebars" data-template-name="components/my-comp">
         <!-- calling the toggle function -->
         <button {{action "toggleBody"}}>{{title}}</button>
         {{#if isShowing}}
            <h2>Tutorialspoint</h2>
         {{/if}}
      </script>

      <script type="text/javascript">
         App = Ember.Application.create();

         App.MyCompComponent = Ember.Component.extend({
            //action helper for component
            actions: {
               //toggling the text
               toggleBody: function() {
                  this.toggleProperty('isShowing');
               }
            }
         });
      </script>
   </body>
</html>

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上述代碼保存在 comp_action_handlr.html 文件中

  • 在瀏覽器中打開此HTML文件。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號