I have a constant file
export class constants {
public static get API_ENDPOINT(): string { return 'https://dvelopment-server/'; }
}
And I imported it to my service
private _registrationUrl = constants.API_ENDPOINT+'api/v1/register';
How can I change the endpont with server change . I have development server staging server and local server. I want app to detect the environment change.
In my angular 1 app I used envserviceprovider for this. Can I use the same in angular 2 app ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…