我正在从这里查看Ionic配置服务:https://ionicframework.com/docs/api/config/Config/
我想使用Config功能设置全局配置变量(在我的情况下是API密钥)。然而,我正努力让它发挥作用。
每当我打电话:
config.set('ios', 'green', 'light');
它告诉我配置没有定义。但是我无法将Config导入为
import { Config } from 'ionic-angular';
不起作用。我认为它可以像平台服务一样导入但看起来不像。 文档缺乏进一步的信息。
任何帮助表示感谢。
答案 0 :(得分:4)
您必须在组件的Config
中添加constructor
依赖项
import {Config } from 'ionic-angular';
constructor(public config:Config){
}
然后,您可以通过
访问它 this.config.get('favoriteColor');