vue路由器意外重定向

时间:2017-03-01 23:28:17

标签: javascript vue.js vue-component vue-router

这是我的路由代码:

// export so we can use in components
export var router = new VueRouter();

// define routes
router.map({
    'home': {
        component: Home,
        auth: true
    },
    'login': {
        component: Login,
        auth: false
    }
});

// fallback route
router.redirect({
    '*': 'home'
});

router.beforeEach(function (transition) {
    console.log("here!");
    console.log("beforeeach auth.user.authenticated: "+auth.user.authenticated)
    if (transition.to.auth && !auth.user.authenticated) {
        // if route requres authentication i.e. auth:true in routes
        // and isn't authenticated
        transition.redirect('login');
    } else {
        transition.next();
    }
});
// expose the whole thing on element with 'app' as an id
router.start(App, '#app');

这是我的auth/index.js

export default {
    user: {
        authenticated: false
    },

    login: function(context, creds, redirect) {
        this.user.authenticated=true;
        console.log("logged in!");
        router.go('/home');
    },

    logout: function() {
        this.user.authenticated=false;
        console.log("logout");
        router.go('/login');
    }
}

我的Nav.vue:

<template>
    <div class="top-nav-bar" v-if="user.authenticated">
     // other code here....
                   <ul class="notification user-drop-down">
                    <li><a href="#" @click="logout()">Logout</a></li>
                   </ul>
     // other code here ...
    </div>
</template>

<script>
    import auth from '../services/auth';

    export default {
        data: function () {
            return {
                user: auth.user
            }
        },
        methods: {
            logout: function () {
                auth.logout();
            }
        }
    }
</script>

当我点击退出按钮时,它会重定向到localhost:8080/#!/home 但我的auth.logout()router.go('/login')。所以它应该重定向到登录控制器!

当我手动输入浏览器localhost:8080/!#/home时,它会正确地重定向到/ login页面。那么为什么注销按钮停留在/ home(我看到一个空页面,没有控制台错误!)?

编辑:

我正在使用vue 1.0.7和vue-router 0.7.5

2 个答案:

答案 0 :(得分:0)

你的问题是

router.go

go方法接受一个整数作为参数(参见http://router.vuejs.org/en/essentials/navigation.html

我认为你真的想要一个

router.push({ path: "/login"})

答案 1 :(得分:0)

我收到此错误是因为我使用的是<a>标记。

<li><a href="#" @click="logout()">Logout</a></li>

所以它会转到# url(导致回退路径),而不是调用@click。 因此,我不得不使用@click.prevent来阻止锚标记的这种默认行为:

<li><a href="#" @click.prevent="logout()">Logout</a></li>