1

TL;DR? (ほぼ) 動作するコードに移動したい場合は、ここで jsFiddleを作成しました。

以下で説明する Ember ルーターがあるとします。現在のユーザーの認証状態を管理してもらいたいです。状態遷移をキャンセルすることはできますか?

App.Router = Ember.Router.extend({

    init: function() {
        this.set('authenticated', false);
        return this._super();
    },

    /*
     * "Authentication" method - just toggle the state
     */
    toggleAuthentication: function() {
        var auth = this.get('authenticated');
        this.set('authenticated', !auth);
        if (auth) {
            this.transitionTo('root.home');
        } else {
            this.transitionTo('loggedIn.home');
        }
    },

    /*
     * Root state
     * Logged out state tree
     */
    root: Ember.State.extend({
        home: Ember.State.extend()
    }),

    /*
     * Authenticated state tree
     */
    loggedIn: Ember.State.extend({

        /* Enter checks user is authenticated */
        enter: function(manager, transition, async, resume) {

            if (manager.get('authenticated')) {
                // proceed
            } else {
                // cancel the transition & redirect to root.home
            }
        },

        /* Exit sets authenticated to false just to be sure */
        exit: function(manager, transition, async, resume) {
            manager.set('authenticated', false);
        },

        /* Sub-states */
        home: Ember.State.extend(),

        news: Ember.State.extend({
            list: Ember.State.extend()
        })
    })
});
4

2 に答える 2

2

それは「まだ」でしょう。https://github.com/emberjs/ember.js/issues/745

于 2012-06-15T13:48:09.733 に答える
0

ディーンが言及したチケットはクローズされました。ただし、これを行う方法があります。次のように、Router.enterState をオーバーライドできます。

App.Router = Ember.Router.extend({
    enterState: function(transition) {
        if (!transition.finalState.get('isLeafRoute') || !App.User.get('authenticated')) {
            // Only transition when your user is authenticated
            this._super.apply(this, arguments);
        } else {
            // Otherwise "cancel this transition and move to the login state
            App.get('router').transitionTo('users.login');
        }
    },

    root: Ember.Route.extend({}) // Your routes
});

これは、ember 1.0 preで機能しています。個人的には、ルート (URL、アクションなど) に移行する方法がたくさんあり、突然認証されなくなる方法がたくさんあるため、このアプローチは正当化されると思います。これが実際に Ember チームが意図したものかどうかはわかりませんが ;)。

于 2012-10-18T13:42:12.953 に答える