我无法异步运行用 Angular 创建的 2 个复选框
我有 2 个复选框,当我单击其中一个时,它应该为“true”,另一个为“false” 因此,如果选中其中一项,则必须取消选中另一项。我不应该同时检查两者。
<div class="export-content">
<input style="margin-right: 5px;" type="checkbox" value="1" [(ngModel)]="dataModal.analysis">
<span>{{'EXPORTER.analysis' | translate}} </span>
</div>
<div class="export-content">
<input style="margin-right: 5px;" type="checkbox" value="2" [(ngModel)]="dataModal.pressAnalysis">
<span>{{'EXPORTER.pressAnalysis' | translate}} </span>
</div>
<button type="button" class="btn btn-sm btn-outline-primary" (click)="selectedDocumentsExpoertClick()">
Print
</button>
这部分是我的html代码。
这部分是我的 ts 代码;
selectedDocumentsExpoertClick() {
if (this.dataModal.analysis) {
print details...
}
if (this.dataModal.pressAnalysis) {
print details...
}
I have 2 checkboxes, and when I click on one of them it should be "true" and the other "false"
so if one is checked, the other must be unchecked. I shouldn't be able to check both at the same time.
<div class="export-content">
<input style="margin-right: 5px;" type="checkbox" value="1" [(ngModel)]="dataModal.analysis">
<span>{{'EXPORTER.analysis' | translate}} </span>
</div>
<div class="export-content">
<input style="margin-right: 5px;" type="checkbox" value="2" [(ngModel)]="dataModal.pressAnalysis">
<span>{{'EXPORTER.pressAnalysis' | translate}} </span>
</div>
<button type="button" class="btn btn-sm btn-outline-primary" (click)="selectedDocumentsExpoertClick()">
Print
</button>
this part is my html code.
and this part is my ts code;
selectedDocumentsExpoertClick() {
if (this.dataModal.analysis) {
print details...
}
if (this.dataModal.pressAnalysis) {
print details...
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获得确切的行为,您应该使用单选按钮而不是复选框。复选框用于选择多个值,因此当您单击某个框时,其他框将继续使用先前的值。
1. 添加导入以使用响应式表单到 app.module.ts
2. 初始化组件中的表单
3. 将表单添加到 HTML your.component.html
To get the exact behavior you should use radio button instead of checkbox. Check box is used to select several values so when you click on a box the others will continue with the previous values.
1. Add imports to use reactive form to app.module.ts
2. initialize the form in the component
3. Add form to your HTML your.component.html