当前位置: 代码迷 >> JavaScript >> 登录时的Toastr通知不起作用
  详细解决方案

登录时的Toastr通知不起作用

热度:109   发布时间:2023-06-07 13:50:05.0

关键是用户使用自己的Google帐户登录,然后弹出一个吐司说“嘿,NAME!”。 但是,吐司没有出现。 我检查了控制台,它是空的! 这是我引用的代码:

$().ready(function(){

function onSignIn(googleUser) {
        // Useful data for your client-side scripts:
        var profile = googleUser.getBasicProfile();
        console.log("ID: " + profile.getId()); // Don't send this directly to your server!
        console.log('Full Name: ' + profile.getName());
        console.log('Given Name: ' + profile.getGivenName());
        console.log('Family Name: ' + profile.getFamilyName());
        console.log("Image URL: " + profile.getImageUrl());
        console.log("Email: " + profile.getEmail());

        // The ID token you need to pass to your backend:
        var id_token = googleUser.getAuthResponse().id_token;
        console.log("ID Token: " + id_token);
      }

    toastr.info('Hey there, '+profile.getName());

});

目标: 这是代码: :

您对toastr的调用位于onSignIn函数之外,因此当您调用profile.getName()配置文件时不存在。

将烤面包机移动到

console.log("ID Token: " + id_token);

和右括号。

  相关解决方案