美文网首页Ionic
ionic3 - 全局变量

ionic3 - 全局变量

作者: 柳暗花明又一匪 | 来源:发表于2018-02-09 10:13 被阅读14次

全局变量的管理:
在app目录下新建app.config.ts文件,并新建类AppConfig,在类里面创建静态方法

export class AppConfig {
    //测试环境URL
    public static getDebugUrl() {
        return "http://192.168.1.117:8080/";
    }
    //生产环境URL
    public static getProdUrl() {
        return "http://192.168.1.117:8080/"
    }
    //获取当前环境URL
    public static getCurrentUrl() {
        return getDebugUrl();
    }
}

然后再需要使用全局变量的地方导入AppConfig

import { AppConfig } from './../../app/app.config';

相关文章

网友评论

    本文标题:ionic3 - 全局变量

    本文链接:https://www.haomeiwen.com/subject/xufeixtx.html