ฉันกำลังพยายามสอนตัวเอง Angular2 และ TypeScript หลังจากทำงานกับ AngularJS 1 อย่างมีความสุขในช่วง 4 ปีที่ผ่านมา! ฉันต้องยอมรับว่าฉันเกลียดมัน แต่ฉันแน่ใจว่าช่วงเวลาที่ยูเรก้าของฉันอยู่ใกล้แค่เอื้อม ... อย่างไรก็ตามฉันได้เขียนบริการในแอปจำลองของฉันที่จะดึงข้อมูล http จากแบ็กเอนด์ปลอมที่ฉันเขียนซึ่งให้บริการ JSON
import {Injectable} from 'angular2/core';
import {Http, Headers, Response} from 'angular2/http';
import {Observable} from 'rxjs';
@Injectable()
export class UserData {
constructor(public http: Http) {
}
getUserStatus(): any {
var headers = new Headers();
headers.append('Content-Type', 'application/json');
return this.http.get('/restservice/userstatus', {headers: headers})
.map((data: any) => data.json())
.catch(this.handleError);
}
getUserInfo(): any {
var headers = new Headers();
headers.append('Content-Type', 'application/json');
return this.http.get('/restservice/profile/info', {headers: headers})
.map((data: any) => data.json())
.catch(this.handleError);
}
getUserPhotos(myId): any {
var headers = new Headers();
headers.append('Content-Type', 'application/json');
return this.http.get(`restservice/profile/pictures/overview/${ myId }`, {headers: headers})
.map((data: any) => data.json())
.catch(this.handleError);
}
private handleError(error: Response) {
// just logging to the console for now...
console.error(error);
return Observable.throw(error.json().error || 'Server error');
}
}
ตอนนี้อยู่ในส่วนประกอบฉันต้องการเรียกใช้ (หรือโซ่) ทั้งสองgetUserInfo()
และgetUserPhotos(myId)
วิธีการ ใน AngularJS สิ่งนี้ง่ายเหมือนในคอนโทรลเลอร์ของฉันฉันจะทำอะไรแบบนี้เพื่อหลีกเลี่ยง "Pyramid of doom" ...
// Good old AngularJS 1.*
UserData.getUserInfo().then(function(resp) {
return UserData.getUserPhotos(resp.UserId);
}).then(function (resp) {
// do more stuff...
});
ตอนนี้ผมได้พยายามทำอะไรบางอย่างที่คล้ายกันในองค์ประกอบของฉัน (เปลี่ยน.then
สำหรับ.subscribe
) แต่คอนโซลข้อผิดพลาดของฉันจะบ้า!
@Component({
selector: 'profile',
template: require('app/components/profile/profile.html'),
providers: [],
directives: [],
pipes: []
})
export class Profile implements OnInit {
userPhotos: any;
userInfo: any;
// UserData is my service
constructor(private userData: UserData) {
}
ngOnInit() {
// I need to pass my own ID here...
this.userData.getUserPhotos('123456') // ToDo: Get this from parent or UserData Service
.subscribe(
(data) => {
this.userPhotos = data;
}
).getUserInfo().subscribe(
(data) => {
this.userInfo = data;
});
}
}
เห็นได้ชัดว่าฉันทำอะไรผิด ... ฉันจะทำอย่างไรกับ Observables และ RxJS ให้ดีที่สุด ขออภัยหากฉันถามคำถามโง่ ๆ ... แต่ขอขอบคุณสำหรับความช่วยเหลือล่วงหน้า! ฉันยังสังเกตเห็นรหัสซ้ำในฟังก์ชันของฉันเมื่อประกาศส่วนหัว http ของฉัน ...