Ionic

ionic3 - 全局变量

2018-02-09  本文已影响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';
上一篇 下一篇

猜你喜欢

热点阅读