在AngularJS中使用Google登录后如何重定向

时间:2018-09-07 07:10:30

标签: javascript angularjs google-authentication

当我尝试登录Google时,按钮可以正常工作,控制台也可以正常工作,但是仅重定向错误(location.path)不起作用。

login.html

<div class="g-signin2" data-onsuccess="onSignIn" data-theme="dark"></div>

登录控制器

function onSignIn(googleUser) {
  var profile = googleUser.getBasicProfile();
  console.log('ID: ' + profile.getId());
  console.log('Name: ' + profile.getName());
  console.log('Image URL: ' + profile.getImageUrl());
  console.log('Email: ' + profile.getEmail());
  $location.path('/index-dashboard');
}
window.onSignIn = onSignIn;

0 个答案:

没有答案