当我获得401 http状态时,我正在尝试重定向到登录页面。 拳头尝试是:
public getPatients(extraHttpRequestParams?: any): Observable<Array<models.Patient>> {
const path = this.basePath + '/api/patient';
let queryParameters = new URLSearchParams();
let headerParams = this.defaultHeaders;
let requestOptions: RequestOptionsArgs = {
method: 'GET',
headers: headerParams,
search: queryParameters
};
return this.httpInterceptor.request(path, requestOptions)
.map((response: Response) => {
if (response.status === 204) {
return undefined;
} else {
if (response.status === 401) {
this.router.navigate(['/login']);
}
return response.json();
}
});
}
但是当我得到401时,我没有进入地图功能,它在浏览器中给出了未经授权的错误。
所以阅读一些帖子,有一种方法可以扩展http服务,似乎是正确的方法,但是当我尝试在app.module.ts上实例化http依赖时,我遇到了一些问题。在我的情况下,我只需要重写拦截器方法,但如果其他人需要其他部分,我会把所有代码都放在一起。
这是我的http扩展名:
import { Http, Request, RequestOptionsArgs, Response, XHRBackend, RequestOptions, ConnectionBackend, Headers} from '@angular/http';
import { Router } from '@angular/router';
import { LocationStrategy, HashLocationStrategy} from '@angular/common';
import { Observable } from 'rxjs/Observable';
import {Injectable} from '@angular/core';
@Injectable()
export class HttpInterceptor extends Http {
constructor(backend: ConnectionBackend, defaultOptions: RequestOptions, private _router: Router) {
super(backend, defaultOptions);
};
request(url: string | Request, options?: RequestOptionsArgs): Observable<Response> {
return this.intercept(super.request(url, options));
};
get(url: string, options?: RequestOptionsArgs): Observable<Response> {
return this.intercept(super.get(url, options));
};
post(url: string, body: string, options?: RequestOptionsArgs): Observable<Response> {
return this.intercept(super.post(url, body, this.getRequestOptionArgs(options)));
};
put(url: string, body: string, options?: RequestOptionsArgs): Observable<Response> {
return this.intercept(super.put(url, body, this.getRequestOptionArgs(options)));
};
delete(url: string, options?: RequestOptionsArgs): Observable<Response> {
return this.intercept(super.delete(url, options));
};
getRequestOptionArgs(options?: RequestOptionsArgs): RequestOptionsArgs {
if (options == null) {
options = new RequestOptions();
}
if (options.headers == null) {
options.headers = new Headers();
}
options.headers.append('Content-Type', 'application/json');
return options;
};
intercept(observable: Observable<Response>): Observable<Response> {
return observable.catch((err, source) => {
if (err.status == 401) {
this._router.navigate(['/login']);
return Observable.empty();
} else {
return Observable.throw(err);
}
});
}
};
在我的app.module.ts中,我必须添加:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { routing, appRoutingProviders } from './app.routing';
import { FormsModule } from '@angular/forms';
import { Routes, RouterModule } from '@angular/router';
import { HomeComponent } from './home/home.component';
import { PatientsComponent } from './pacientes/pacientes.component';
import { HttpInterceptor } from '../api/api/HttpInterceptor';
import { RequestOptions, ConnectionBackend} from '@angular/http';
import { HttpModule, JsonpModule } from '@angular/http';
const routes: Routes = [
];
@NgModule({
imports: [
BrowserModule,
FormsModule,
HttpModule,
JsonpModule,
routing,
RouterModule.forRoot(routes, { useHash: true }), // .../#/crisis-center/
],
declarations: [
AppComponent,
PatientsComponent,
],
providers: [
appRoutingProviders,
HttpInterceptor,
RequestOptions
],
bootstrap: [AppComponent]
})
export class AppModule { }
现在好了,但是当我尝试使用我创建的新httpInterceptor服务,导入它并将其添加到构造函数并替换我的新http拦截器实例的http实例时,我得到了一个没有ConnectionBackend的提供者,我试试将ConnectionBackend添加到提供商,但它说“属性提供商的类型不兼容”。然后我尝试添加httpInterceptor但我得到Uncaught错误:无法解析RequestOptions的所有参数:(?)。
总而言之,必须有一种正确扩展http方法或以另一种方式处理401的方法。 我该怎么做,是否有一些教程,链接或其他东西来看看?
答案 0 :(得分:2)
没有使用令牌ConnectionBackend
注册的提供商。你可以做的是在配置拦截器时使用工厂
providers: [
{
provide: HttpInterceptor,
useFactory: (backend: XHRBackend, options: RequestOptions, router: Router) => {
return new HttpInterceptor(backend, options, router);
},
deps: [XHRBackend, RequestOptions, Router ]
}
]
我已经使用您的代码对此进行了测试,它应该可以正常运行。