คำอธิบาย
ทางออกที่ดีที่สุดที่ฉันพบคือการลบล้างXHRBackend
สถานะการตอบสนองของ HTTP 401
และ403
นำไปสู่การดำเนินการบางอย่าง
หากคุณจัดการการรับรองความถูกต้องภายนอกแอปพลิเคชัน Angular ของคุณคุณสามารถบังคับให้รีเฟรชเพจปัจจุบันเพื่อให้กลไกภายนอกของคุณถูกทริกเกอร์ ฉันให้รายละเอียดโซลูชันนี้ในการใช้งานด้านล่าง
คุณยังสามารถส่งต่อไปยังส่วนประกอบภายในแอปพลิเคชันของคุณเพื่อไม่ให้แอปพลิเคชัน Angular ของคุณโหลดซ้ำได้
การนำไปใช้
เชิงมุม> 2.3.0
ขอบคุณ @mrgoos นี่คือวิธีแก้ปัญหาที่เรียบง่ายสำหรับเชิงมุม 2.3.0+ เนื่องจากการแก้ไขข้อบกพร่องในเชิงมุม 2.3.0 (ดูปัญหาhttps://github.com/angular/angular/issues/11606 ) ที่ขยายHttp
โมดูลโดยตรง
import { Injectable } from '@angular/core';
import { Request, XHRBackend, RequestOptions, Response, Http, RequestOptionsArgs, Headers } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/catch';
import 'rxjs/add/observable/throw';
@Injectable()
export class AuthenticatedHttpService extends Http {
constructor(backend: XHRBackend, defaultOptions: RequestOptions) {
super(backend, defaultOptions);
}
request(url: string | Request, options?: RequestOptionsArgs): Observable<Response> {
return super.request(url, options).catch((error: Response) => {
if ((error.status === 401 || error.status === 403) && (window.location.href.match(/\?/g) || []).length < 2) {
console.log('The authentication session expires or the user is not authorised. Force refresh of the current page.');
window.location.href = window.location.href + '?' + new Date().getMilliseconds();
}
return Observable.throw(error);
});
}
}
ตอนนี้ไฟล์โมดูลมีผู้ให้บริการต่อไปนี้เท่านั้น
providers: [
{ provide: Http, useClass: AuthenticatedHttpService }
]
อีกวิธีหนึ่งที่ใช้เราเตอร์และบริการรับรองความถูกต้องภายนอกมีรายละเอียดอยู่ในส่วนสำคัญต่อไปนี้โดย @mrgoos
เชิงมุมก่อน 2.3.0
การดำเนินการดังต่อไปนี้การทำงานสำหรับและAngular 2.2.x FINAL
RxJS 5.0.0-beta.12
จะเปลี่ยนเส้นทางไปยังหน้าปัจจุบัน (บวกพารามิเตอร์เพื่อรับ URL ที่ไม่ซ้ำกันและหลีกเลี่ยงการแคช) หากส่งคืนรหัส HTTP 401 หรือ 403
import { Request, XHRBackend, BrowserXhr, ResponseOptions, XSRFStrategy, Response } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/catch';
import 'rxjs/add/observable/throw';
export class AuthenticationConnectionBackend extends XHRBackend {
constructor(_browserXhr: BrowserXhr, _baseResponseOptions: ResponseOptions, _xsrfStrategy: XSRFStrategy) {
super(_browserXhr, _baseResponseOptions, _xsrfStrategy);
}
createConnection(request: Request) {
let xhrConnection = super.createConnection(request);
xhrConnection.response = xhrConnection.response.catch((error: Response) => {
if ((error.status === 401 || error.status === 403) && (window.location.href.match(/\?/g) || []).length < 2) {
console.log('The authentication session expires or the user is not authorised. Force refresh of the current page.');
window.location.href = window.location.href + '?' + new Date().getMilliseconds();
}
return Observable.throw(error);
});
return xhrConnection;
}
}
ด้วยไฟล์โมดูลต่อไปนี้
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpModule, XHRBackend } from '@angular/http';
import { AppComponent } from './app.component';
import { AuthenticationConnectionBackend } from './authenticated-connection.backend';
@NgModule({
bootstrap: [AppComponent],
declarations: [
AppComponent,
],
entryComponents: [AppComponent],
imports: [
BrowserModule,
CommonModule,
HttpModule,
],
providers: [
{ provide: XHRBackend, useClass: AuthenticationConnectionBackend },
],
})
export class AppModule {
}