おはよう定義されていない、subsrcibeにおける変数のAngular2値は
私は次のような問題があります。
onSubmit(){
this.userService.getCandidate(this.candidate)
.subscribe(
(candidate) => {
this.candidate2 = candidate;
console.log(this.candidate2);
this.name=this.candidate.name;
console.log(this.candidate2.name);
},
(error: Response) => console.log(error),
()=> {
console.log("Finished")}
)
}
console.log(this.candidate2);
は未定義私を与えるconsole.log(this.candidate2.name);
私にすべてのフィールド と予想される候補を与えるが。
私は候補者のさまざまなフィールドの値がわかりますので、どうすればよいですか。
この候補は何ですか?それはモデル – Chandru
ですあなたは問題の候補とthis.candidate値を更新できますか? – Chandru