我在Angular 2中使用Auth0。我有以下登录代码,它们在身份验证后不会转到主页。

据我了解,auth0不会进行重定向。它发送经过身份验证的事件,并且应该在本地存储中创建一个项目,然后导航到主页。

@Injectable()
export class AuthService {

    lock = new Auth0Lock(this.config.clientID, this.config.domain, {
        auth: {

            responseType: 'token',
        }
    });

    constructor(private http: Http, private config: AppConfig, private router: Router) {
        // Add callback for lock `authenticated` event
        this.lock.on('authenticated', (authResult) => {
            localStorage.setItem('id_token', authResult.idToken);
            console.log(localStorage);
            this.router.navigate(['home']);
        });
    }

最佳答案

您可以尝试location.replace('/ home')或location.replace('http://localhost:4200/home')

关于javascript - auth0路由器不触发导航,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43286273/

10-12 07:19