2016-10-04 67 views
3

我需要在我的angular2應用程序中設置應用程序常量,以便可以在整個應用程序中使用這些應用程序,在角度1中,我使用angular.constant和angular.value進行了操作。我在這裏尋找最好的方法。angular2中的應用常量?

+0

的可能的複製[定義在角2全局常量(HTTP ://stackoverflow.com/questions/34986922/define-global-constants-in-angular-2) – estus

+0

請參閱http://stackoverflow.com/a/38718878/2460760 – Nodarii

回答

5

文件constants.ts

export const XXX = 'yyy'; 

otherfile.ts

import {XXX} from 'constants.ts' 
2

如果你想,把它們封裝在一個變量:

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