リクエストURLに基づいてオブジェクトまたは同じオブジェクトの配列を返すメソッドがあります。論理は単純です。複数のタイプのObservableをTypescriptで返す
myservice.service.ts:
private _url_User = "https://api.github.com/users/dummyuser";
constructor(private _http: Http){}
getUsers(followers?: boolean): Observable<User | User[]>{
this._url_User += followers?"/followers":"";//if followers equals true edit url, this returns array of same user object
return this._http.get(this._url_User).map(res=>res.json());
}
mycomponent.component.ts:
import { Component,OnInit } from '@angular/core';
import {Auth} from '../../services/auth.service';
import {CommentService} from '../../services/comment.service';
import {User} from '../../infrastructure/user';
@Component({
moduleId:module.id,
selector: 'app-comment',
templateUrl: '../../templates/comment.component.html'
})
export class CommentComponent implements OnInit{
user:User;
followers:User[];
constructor(private auth: Auth, private commentService: CommentService){
}
ngOnInit(){
this.commentService.getUsers().subscribe(d=>{ this.user=d[0]; console.log(this.user.email)});
this.commentService.getUsers(true).subscribe(d=>{this.followers=d; console.log(this.followers[0].email)});
}
}
実際の例はコンパイルされていないようです。「 'string'をタイプしても 'string []'型に割り当てられません。」 – spottedmahn
@spottedmahnこれは意図的なものです - この関数を呼び出すコードの中の例を 'All Valid'(コンパイルする必要があります)と 'Invalid'(分割しないでください) –
ああ、申し訳ありませんが、私は十分に近く読んでいませんでした。私はサンプルを開き、実行をクリックしました!明確化のためにありがとう! – spottedmahn