Firebase Remote Config : Uncaught TypeError: firebase.remoteConfig is not a function
Firebase Remote Config : Uncaught TypeError: firebase.remoteConfig is not a function
我正在尝试使用 Firebase 远程配置。我遵循此设置的 firebase 文档 https://firebase.google.com/docs/remote-config/use-config-web#add-remote-config-to-your-app 。但是我得到了这个错误 Uncaught TypeError: firebase.remoteConfig is not a function.
这是我的工作:
index.html 文件
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "api-key",
authDomain: "project-id.firebaseapp.com",
databaseURL: "https://project-id.firebaseio.com",
projectId: "project-id",
storageBucket: "project-id.appspot.com",
messagingSenderId: "sender-id",
appId: "app-id",
measurementId: "G-measurement-id",
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<script>
const remoteConfig = firebase.remoteConfig();
remoteConfig.settings = {
minimumFetchIntervalMillis: 3600000,
};
remoteConfig.defaultConfig = ({
'test': 'Welcome',
});
console.log(remoteConfig.getasString("test"));
</script
我想我在这一行中遇到了这个错误 const remoteConfig = firebase.remoteConfig(); .提前致谢。
使用远程配置前,需要添加以下脚本:
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-remote-config.js"></script>
在此处查看有关如何设置的更多信息:
在我的 React 应用程序中,问题是缺少下面的导入语句:
import "firebase/remote-config";
我正在尝试使用 Firebase 远程配置。我遵循此设置的 firebase 文档 https://firebase.google.com/docs/remote-config/use-config-web#add-remote-config-to-your-app 。但是我得到了这个错误 Uncaught TypeError: firebase.remoteConfig is not a function.
这是我的工作:
index.html 文件
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "api-key",
authDomain: "project-id.firebaseapp.com",
databaseURL: "https://project-id.firebaseio.com",
projectId: "project-id",
storageBucket: "project-id.appspot.com",
messagingSenderId: "sender-id",
appId: "app-id",
measurementId: "G-measurement-id",
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<script>
const remoteConfig = firebase.remoteConfig();
remoteConfig.settings = {
minimumFetchIntervalMillis: 3600000,
};
remoteConfig.defaultConfig = ({
'test': 'Welcome',
});
console.log(remoteConfig.getasString("test"));
</script
我想我在这一行中遇到了这个错误 const remoteConfig = firebase.remoteConfig(); .提前致谢。
使用远程配置前,需要添加以下脚本:
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-remote-config.js"></script>
在此处查看有关如何设置的更多信息:
在我的 React 应用程序中,问题是缺少下面的导入语句:
import "firebase/remote-config";