1

サーバーに戻ってデータを取得する単純なサービスである次のコードがあります。

import { Injectable } from '@angular/core';
import { Action } from '../shared';
import { Http, Response, Headers, RequestOptions } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import { Authenticated } from '../authenticated';
import 'rxjs/Rx';

@Injectable()
export class ActionsService {
    private url = 'http://localhost/api/actions';
    constructor(private http: Http, private authenticated : Authenticated) {}

getActions(search:string): Observable<Action[]> {
    let options = this.getOptions(false);

    let queryString = `?page=1&size=10&search=${search}`; 
    return this.http.get(`${this.url + queryString}`, options)
                .map(this.extractData)
                .catch(this.handleError);
}

private extractData(response: Response) {
    let body = response.json();
    return body || { };
}

private handleError (error: any) {      
    let errMsg = (error.message) ? error.message : error.status ? `${error.status} - ${error.statusText}` : 'Server error';    
    console.error(errMsg); // log to console instead

    if (error.status == 403) {            
      this.authenticated.logout();
    }

    return Observable.throw(errMsg);
}     

private getOptions(addContentType: boolean) : RequestOptions {
    let headers = new Headers();
    if (addContentType) {
      headers.append('Content-Type', 'application/json');  
    }

    let authToken = JSON.parse(localStorage.getItem('auth_token'));        
    headers.append('Authorization', `Bearer ${authToken.access_token}`);

    return new RequestOptions({ headers: headers });
  }
}

handleError を除いて、すべてが期待どおりに機能します。getActions がサーバーからエラーを受け取るとすぐに、 this.handleError メソッドに入ります。このメソッドは、 this.authenticated.logout() が呼び出されるセクションまで正常に動作します。this.autenticated は定義されておらず、「this」が別のオブジェクトを参照しているためなのか、それとも http 例外が発生したときに ActionSerivce のローカル変数が null になったのかはわかりません。認証されたローカル変数が適切に挿入されます (コンストラクターで console.log を実行したところ、そこにありました)。

4

1 に答える 1