重新渲染角度分量

问题描述 投票:0回答:1

[每当我更改布尔值的值时都需要下面的堆栈闪电,我想重新渲染组件,我该如何实现呢?

https://stackblitz.com/edit/angular-ivy-8rwqba?file=src/app/app.component.html

angular components
1个回答
0
投票

使用[checked]代替[value]

<input type="checkbox" [checked]="test1"/>test1 - {{test1}}
<input type="checkbox" [checked]="test2"/>test2 - {{test2}}
© www.soinside.com 2019 - 2024. All rights reserved.