簡體   English   中英

可觀察值在 agular html 模板中未更改

[英]observable value is not changed in agular html template

在我的 ngOnint 中,我正在調用腳本,該值顯示在 console.log 中,但未反映在 html 模板中。 userList 在模板中為空。

 getAllRoles(){ this.adminService .getAllRoles().subscribe((users: any) => { this.userList = users; }); console.log("now",this.userList) }

你可以試試這個:

 getAllRoles(){ this.adminService.getAllRoles().pipe(take(1)).subscribe((users: any) => { this.userList = [...users]; console.log("now",this.userList); }); }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM