晚安
当我开始使用rest服务时,响应带有正确的json但没有绑定。
getObjetoById(idObjeto: Number): Observable<Objeto> {
const url_datas = "http://localhost:4200/api/method/Objeto" + '/' +idObjeto;
return this.http.get<Objeto>(url_datas).pipe(
catchError(this.handleError)
);
}
...
this.servico.getObjetoById("1").subscribe(
(data: Objeto) => this.objeto = data,
error => console.log(error)
);
console.log("valor da variavel "+variavel);
angular和打字稿的后续版本
$ ng -v您的全局Angular CLI版本(7.3.8)大于您的 本地版本(6.2.5)。使用本地Angular CLI版本。
$ tsc -v版本3.4.5