如果你看一下角度教程here,它们不会像其他人一样导入observable,也不会导入他们的authService。
以下是我为了不抱怨而做的最不重要的事情:
import { AuthService } from './auth.service';
import { Observable } from 'rxjs/Observable';
import { Injectable } from '@angular/core';
import { HttpEvent, HttpInterceptor, HttpHandler, HttpRequest } from '@angular/common/http';
@Injectable()
export class AuthInterceptor implements HttpInterceptor {
constructor(private auth: AuthService) {}
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
// Get the auth header from the service.
const authHeader = this.auth.getAuthorizationHeader();
// Clone the request to add the new header.
const authReq = req.clone({headers: req.headers.set('Authorization', authHeader)});
// Pass on the cloned request instead of the original request.
return next.handle(authReq);
}
}
他们是否正在做我不喜欢的事情,或者他们只是跳过导入以使教程缩短2行。
答案 0 :(得分:2)
它只是没有在那里显示,为了代码可读性,但如果你经历 他们的教程:
现场演示链接:Plnkr
在这里你可以清楚地看到所有的进口
文件:app / hero-search.component.ts
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { Observable } from 'rxjs/Observable';
import { Subject } from 'rxjs/Subject';
// Observable class extensions
import 'rxjs/add/observable/of';
// Observable operators
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged';
答案 1 :(得分:1)
以下是我为了不抱怨而做的最不重要的事情
这是正确的版本。角度文档只是不准确/过时。向他们发送PR