加载 React 组件时未定义 gapi

IT技术 javascript reactjs google-signin
2021-05-01 09:51:32

我正在尝试使用 React集成 Google 登录(链接)。
我发现了一个过去解决了这个问题的问题Using google sign in button with react 2

我复制了与上述相同的步骤。在我的index.html我做

<script src="https://apis.google.com/js/platform.js?onload=triggerGoogleLoaded" async defer></script>
    <script type="text/javascript">
        function triggerGoogleLoaded() {
            console.log("google event loaded");
            window.dispatchEvent(new Event('google-loaded'));
        }
    </script>

然后我的Component样子

var LoginButton = React.createClass({

    onSignIn: function(googleUser) {
        console.log("user signed in"); // plus any other logic here
    },

    renderGoogleLoginButton: function() {
        console.log('rendering google signin button');
        gapi.signin2.render('my-signin2', {
            'scope': 'https://www.googleapis.com/auth/plus.login',
            'width': 200,
            'height': 50,
            'longtitle': true,
            'theme': 'light',
            'onsuccess': this.onSignIn
        })
    },

    componentDidMount: function() {
        window.addEventListener('google-loaded',this.renderGoogleLoginButton);
    },

    render: function() {
        let displayText = "Sign in with Google";
        return (
            <div class="g-signin2" data-onsuccess="onSignIn"></div>
        );
    }

});

export default LoginButton;

当我使用 运行程序时yarn start,我得到

/Users/Harit.Himanshu/bl/sources/webs/google-login/src/LoginButton.js
  11:9   error    'gapi' is not defined                             no-undef
  26:13  warning  'displayText' is assigned a value but never used  no-unused-vars

✖ 2 problems (1 error, 1 warning)

完整的源代码可在https://github.com/hhimanshu/google-login-with-react 获得

有人可以帮我理解我的错误吗?

谢谢

4个回答

在我看来,您正在将 google api 作为脚本标记加载,我们希望将其设置window.gapi为 google api。但是,您随后正在运行 eslint 或其他一些检查器,并且不知道window.gapi应该存在。它失败了,因为它看到您使用了未声明的变量。

一个廉价的解决方法是告诉 Eslint 你知道你在做什么;

/* global gapi */

把它放在你的文件的顶部,eslint 将把它gapi当作一个已知的全局变量。

这对我有用。把它放在 componentDidMount 或构造函数中:

componentDidMount() {
    window.gapi.load('auth2', () => {
        // Retrieve the singleton for the GoogleAuth library and set up the client.
        this.auth2 = window.gapi.auth2.init({
            client_id: '436676563344-.apps.googleusercontent.com',
            cookiepolicy: 'single_host_origin',
        });

        this.auth2.attachClickHandler(this.refs.googleButton, {},
            (googleUser) => {
                this.googleLogin(googleUser.getBasicProfile());
            }, (error) => {

            });
    });
}

你也可以试试包gapi-script,这个包立即提供了 gapi,所以你不必等待任何脚本加载,只需导入它并使用:

import { gapi } from 'gapi-script';

确保您没有使用异步延迟,这将导致 window.gapi.someMethod() 和您的脚本加载之间的竞争条件

简而言之,从 index.html 中的脚本标记中删除异步延迟

<script src="https://apis.google.com/js/platform.js?onload=triggerGoogleLoaded" async defer></script>

<script src="https://apis.google.com/js/platform.js?onload=triggerGoogleLoaded"></script>