web-dev-qa-db-ja.com

CUAGCHTAXERROR:要求されたモジュール 'https://www.gstatic.com/firebasejs/9.6.0/firebase-app.js'は 'default'という名前のエクスポートを提供しません。

WebアプリケーションのGoogle認証を設定してテストしようとしています。 JavaScript関数を実行することに多くの問題が発生していましたが、なぜわからわかりません。 FireBaseフォルダをローカルに参照しているエラーが発生しているため、すべてのCDNインポートを使用します。私のファイルは次のとおりです。

firebase-config.js.

// Import the functions you need from the SDKs you need
import firebase from "https://www.gstatic.com/firebasejs/9.6.0/firebase-app.js"; 
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.6.0/firebase-analytics.js";

const firebaseConfig = {
 [config keys]
};

// Initialize Firebase app
const fb_app = firebase.initializeApp(firebaseConfig); // returns an app 
const analytics = getAnalytics(app);
export {fb_app};
 _

sign.js.

import {fb_app} from "/src/firebase-config.js";

import { getAuth, signInWithPopup, GoogleAuthProvider } from "https://www.gstatic.com/firebasejs/9.4.0/firebase-auth.js";

fb_app; // I was getting an error that the firebase app isn't initialized, so I placed this here to see if it was work. I am not sure this is the correct way to call the app in this file. 

const auth = getAuth();
const provider = new GoogleAuthProvider(); 

signInWithPopup(auth, provider)
  .then((result) => {
    console.log("Signing User In...");
    // This gives you a Google Access Token. You can use it to access the Google API.
    const credential = GoogleAuthProvider.credentialFromResult(result);
    const token = credential.accessToken;
    // The signed-in user info.
    const user = result.user;
    // ...
  }).catch((error) => {
    // Handle Errors here.
    const errorCode = error.code;
    const errorMessage = error.message;
    // The email of the user's account used.
    const email = error.email;
    // The AuthCredential type that was used.
    const credential = GoogleAuthProvider.credentialFromError(error);
    // ...
  });
document.getElementById("signInButton").onclick = signInWithPopup(auth, provider); // this is how I am importing the function to the html. 
 _

index.html.

<body>
        <div class="loginbox">
            <h1>Login</h1>
            <form>
                <div id="google-signin"> 
                    <button id="signInButton">Login with Google -></button>
                </div>
            </form>
        </div>
        <!-- <script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin></script>
        <script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js" crossorigin></script>
        <script src="/src/signin.jsx"></script> -->
    </body>
 _

どんな助けにも感謝されるでしょう。私はこのものを学ぶことが非常に新しいので、私は意図せずに何か悪いことをしたことがあるかもしれません。私は小さい小さい詳細に関連するさまざまなエラーをたくさん得ましたが、私はこのエラーが発生する理由を本当に理解していません。前もって感謝します。

1
hoshii_tomato

使用しているライブラリの詳細が必要です。エラーはここに発生します

import firebase from "https://www.gstatic.com/firebasejs/9.6.0/firebase-app.js"; 
 _

括弧のインポートを使用しないことで、ライブラリからdefaultオブジェクトをインポートしようとしています。これはFirebaseライブラリから提供されていません。

https://developer.mozilla.org/en-us/docs/web/javascript/reference/statements/import

1
cute_programmer