1

通常,这个问题是关于如何在 AngularJS 的 module.config 函数中使用来自后端的一些动态内容。

具体来说,这个问题是关于angular-google-maps中的 GoogleMapApi 提供程序

在我的 Angular 应用程序中,Google Maps API 密钥存储在 Firebase 后端。我想做的是为 GoogleMapApiProvider 设置 API 密钥

.config(function(uiGmapGoogleMapApiProvider) {
    uiGmapGoogleMapApiProvider.configure({
    key: 'your api key',
    }); 
})

我知道我在 Angular 模块配置函数中只有 Providers 和 Constants 可用。所以我很难想出一种方法来使用$firebaseProvider从我的 Firebase 后端获取必要的 API 密钥。 非常感谢任何帮助或指导!谢谢!

4

0 回答 0