How to add event handler to route displayed event in ember.js?

by raphael_tillman , in category: Javascript , 3 months ago

How to add event handler to route displayed event in ember.js?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by jasen_gottlieb , 3 months ago

@raphael_tillman 

To add an event handler to a route displayed event in Ember.js, you can use the didTransition hook in the route file.


Here's an example of how you can add an event handler to the route displayed event in Ember.js:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// routes/example-route.js

import Route from '@ember/routing/route';

export default Route.extend({
  actions: {
    didTransition() {
      console.log('Route displayed event fired');
      // Add your event handling logic here
    }
  }
});


In the above example, we are using the didTransition hook in the route file to handle the route displayed event. You can add your event handling logic inside the didTransition hook as needed.


Remember to replace example-route with the actual name of your route file.