ActionHandler#send()

send (actionName, context) public

Defined in packages/ember-runtime/lib/mixins/action_handler.js:145

Triggers a named action on the ActionHandler. Any parameters supplied after the actionName string will be passed as arguments to the action target function.

If the ActionHandler has its target property set, actions may bubble to the target. Bubbling happens when an actionName can not be found in the ActionHandler's actions hash or if the action target function returns true.

Example

App.WelcomeRoute = Ember.Route.extend({
  actions: {
    playTheme() {
       this.send('playMusic', 'theme.mp3');
    },
    playMusic(track) {
      // ...
    }
  }
});

Parameters:

actionName String
The action to trigger
context *
a context to send with the action
doc_EmberJs
2016-11-30 16:48:23
Comments
Leave a Comment

Please login to continue.