ฉันมีบริการที่มีวิธีการนี้:
export class TestModelService {
public testModel: TestModel;
constructor( @Inject(Http) public http: Http) {
}
public fetchModel(uuid: string = undefined): Observable<string> {
if(!uuid) {
//return Observable of JSON.stringify(new TestModel());
}
else {
return this.http.get("http://localhost:8080/myapp/api/model/" + uuid)
.map(res => res.text());
}
}
}
ในตัวสร้างของคอมโพเนนต์ฉันสมัครสมาชิกดังนี้:
export class MyComponent {
testModel: TestModel;
testModelService: TestModelService;
constructor(@Inject(TestModelService) testModelService) {
this.testModelService = testModelService;
testService.fetchModel("29f4fddc-155a-4f26-9db6-5a431ecd5d44").subscribe(
data => { this.testModel = FactModel.fromJson(JSON.parse(data)); },
err => console.log(err)
);
}
}
สิ่งนี้ใช้งานได้หากวัตถุมาจากเซิร์ฟเวอร์ แต่ฉันกำลังพยายามสร้างสิ่งที่สังเกตได้ซึ่งจะทำงานร่วมกับการsubscribe()
เรียกสตริงคงที่ที่กำหนด (สิ่งนี้เกิดขึ้นเมื่อtestModelService.fetchModel()
ไม่ได้รับ uuid) ดังนั้นจึงมีการจัดการที่ราบรื่นในทั้งสองกรณี