от http?
Напомни через полчаса, скину код и поищу, где нашел)
Есть 2 варианта http://stackoverflow.com/questions/34969292/how-to-set-default-http-header-in-angular2 /** * Extending BaseRequestOptions to inject common headers to all requests. */ class CustomRequestOptions extends BaseRequestOptions { constructor() { super(); this.headers.append('Authorization', 'my-token'); this.headers.append('foo', 'bar'); } } ну и заинжектить @NgModule({ declarations: [FooComponent], imports : [ // Angular modules BrowserModule, HttpModule, // This is required /* other modules */ ], providers : [ {provide: LocationStrategy, useClass: HashLocationStrategy}, // This is the main part. We are telling Angular to provide an instance of // CustomRequestOptions whenever someone injects RequestOptions {provide: RequestOptions, useClass: CustomRequestOptions} ], bootstrap : [AppComponent] }) этот вариант намного проще - если не нужна кастомная логика ну и через HTTP модуль
Обсуждают сегодня