新的 firebase 项目没有出现在 shell

the new firebase project doesn't appear on the shell

我在 firebase 网站上创建了一个新项目 我在 html

中复制了这段代码
<script src="https://www.gstatic.com/firebasejs/5.5.9/firebase.js"></script>
<script>
  // Initialize Firebase
  var config = {
    apiKey: "ksjdfhkshfjksdhfjksdhfjksdhf",
    authDomain: "myprojectapp.com",
    databaseURL: "https://myproject-1734d.firebaseio.com",
    projectId: "myproject-1734d",
    storageBucket: "myproject-1734d.appspot.com",
    messagingSenderId: "724771200762"
  };
  firebase.initializeApp(config);
</script>

命令行是我写的

firebase init

shell 上显示了我的所有项目,除了 select 的新项目。有人知道发生了什么事吗?

我也遇到过这个问题。我发现在我的案例中,该项目出现了另一个命令。

尝试

firebase list

如果你也是

在使用 [不设置默认项目] 进行初始化时跳过它 之后将项目与

一起使用
firebase use <your-project-id>

从 firebase 控制台转到设置(靠近项目概述)并查找项目 ID。然后使用以下命令:

firebase init --project <project-ID>