为什么src =“ ... / firebase-app.js”不起作用?

时间:2019-07-23 09:29:21

标签: javascript html firebase

根据Firebase,我应该使用src=".../firebase-app.js",但是它不起作用。因此,我使用了".../firebase.js"并成功了。

为什么?

这是我的代码:

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title>Log in</title>
    </head>
    <script src="login.js"></script>
    <body></body>
    <script src="https://www.gstatic.com/firebasejs/6.3.1/firebase-app.js"></script>
    <h1 id="h1">Log in Page</h1>
    <form id="loginform">
        Username : <br>
        <input type="text" name="email" id="email"><br>
        Password : <br>
        <input type="password" name="password" id="password"><br>
    </form>
    <button onclick="login()">Login</button>
</html>

1 个答案:

答案 0 :(得分:0)

Firebase核心功能由以下链接提供:(必需)

<script src="/__/firebase/6.3.1/firebase-app.js"></script>

firebase.js提供了完整的SDK:

<script src="/__/firebase/6.3.1/firebase.js"></script>

请参考官方网站firebase - documentation上提供的文档