应用常数在angular2?

时间:2016-10-04 05:41:23

标签: angular

我需要在我的angular2应用程序中设置应用程序常量,以便在整个应用程序中可以使用这些内容,角度1我使用angular.constant和angular.value。我在这里寻找最好的方式。

2 个答案:

答案 0 :(得分:5)

档案constants.ts

export const XXX = 'yyy';

otherfile.ts

import {XXX} from 'constants.ts'

答案 1 :(得分:3)

如果要将它们封装在变量中:

export const BaseConstants = Object.freeze({
  BASE_API_URL: 'http://example.com/'
});