Ember CLI - Injecting a service

梦想与她 提交于 2019-12-02 05:59:02
Sam Selikoff

Injected services are lazy loaded, you have to access them via a getter this.get('session') and not directly this.session.

Also, you may want to check out Ember-Simple-Auth if you're doing authentication.

You've got it 99% correct, just seems like a problem with how you're accessing the session.

// routes/application.js
export default Ember.Route.extend({
    beforeModel: function() {
        var loggedIn = this.get('session.loggedIn');
    }
});
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!