每当我更改布尔值var的值时,我都会遇到下面的stackblitz问题,我想重新渲染组件该如何实现?
https://stackblitz.com/edit/angular-ivy-8rwqba?file=src/app/app.component.html
答案 0 :(得分:0)
使用[checked]
代替[value]
:
<input type="checkbox" [checked]="test1"/>test1 - {{test1}}
<input type="checkbox" [checked]="test2"/>test2 - {{test2}}