我是angular js的新手。目前,我在项目中使用的是角度6。我正在使用http客户端进行休息。但它按预期工作。但是,当休息数据值更改/更新时,它不会立即反映到浏览器中。请你帮助我好吗。
ngOnInit() {
this.http.get(' http://127.0.0.1:5000/getapp_list').subscribe((res: any[])=>{
//console.log(res);
this.fetchApp = res['applist'];
//console.log(this.fetchApp);
});