当我尝试登录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;