ember simple auth在会话中保存用户配置文件

时间:2016-02-16 20:50:27

标签: javascript ember.js ember-simple-auth

我无法找到为什么会话set的方法this.get('session').set('name', name);在重新加载页面后不会保留。我完全按照提到的here进行了跟踪。

我的代码

//controllers/authentification.js
import Ember from 'ember';

export default Ember.Controller.extend({

session: Ember.inject.service('session'),
actions: {
    authenticate() {
        var this2 = this;
        let {
            email, motDePasse
        } = this.getProperties('email', 'motDePasse');

        this.get('session').authenticate('authenticator:oauth2', email, motDePasse).then(function () {
            this2.store.queryRecord('membre', {
                membre: {
                    email: email
                }
            }).then(function (membre) {
                var nom = membre.get('nom');
                this2.get('session').set('nom', nom);
                console.log('name:', nom);
            });
        }).catch((reason) => {
            this.set('errorMessage', reason.error || reason);
        });
    }
}
});

用于session-store / sessions.js

import Cookie from 'ember-simple-auth/session-stores/cookie';

export default Cookie.extend();

控制器/ application.js中

import Ember from 'ember';
import SessionService from 'ember-simple-auth/services/session';

export default Ember.Controller.extend({
    session: Ember.inject.service('session'),
    index: function () {
        this.transitionTo('index');
    }
});

模板/ application.js中

<ul class="nav navbar-nav navbar-right">
{{#if session.isAuthenticated}}
   <li>nom :{{session.nom}}</li>
   <li><a {{action 'logout' on="click"}}>Deconnecter</a></li>
{{else}}
   {{#link-to 'authentification' tagName="li"}}<a href>Authentification</a>{{/link-to}}
{{/if}}
</ul>

第一次进行身份验证时,变量&#34; nom&#34;出现,但一旦我重新加载页面,变量&#34; nom&#34;消失,但会议stille isAuthenticated

1 个答案:

答案 0 :(得分:1)

我找到了解决方案,我只想使用

this2.get('session').set('.data.nom', nom);

而不是

this2.get('session').set('nom', nom);