{{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文件。
更多建議: