- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当我们选中/取消选中复选框时,我试图显示或隐藏相应的 skillBox 元素。问题在这里,当我这样做时,所有 skillBox 都在 FormArray 中隐藏/显示。你能帮我只显示或隐藏相应的 FormArray 元素吗?
这是代码。
<div class="row box">
<div class="col-xs-12">
<h4>Reactive Test Form</h4>
<button class="btn btn-info" type="button" (click)="fnOnAddProfile()">Add Profile</button>
<hr>
<form [formGroup]="ourForm" (ngSubmit)="fnSave()">
<div formArrayName="apps">
<div class="inner-box" *ngFor="let app of ourForm.get('apps').controls; let ind = index" >
<div [formGroupName]="ind" >
<div formGroupName="common">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" formControlName="name" />
</div>
<div class="form-group">
<label for="name">Profession</label>
<input type="text" class="form-control" formControlName="profession" />
</div>
<label for="skillcheckbox">
<input type="checkbox" formControlName="enableSkill"
(change)="fnGetCheckBoxVal(app.get('common').get('enableSkill').value, ind)" /> Want to add Skill?
</label>
</div>
<div *ngIf="isSkill" id="skillBox">
<div class="row" formArrayName="skills">
<div class="col-xs-12">
<div class="form-group" *ngFor="let control of getSkills(app); let i = index">
<input type="text" class="form-control" [formControlName]="i">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<h5>Please add your skills</h5>
<button class="btn btn-primary" type="button" (click)="fnOnAddSkill(app,ind)">Add Skill</button>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="form-group">
<button class="btn btn-success" type="submit">Save</button>
<button class="btn btn-danger">Clear</button>
</div>
</form>
</div>
</div>
这是 typescript 代码
import { Component, OnInit } from "@angular/core";
import { FormGroup, FormControl, FormArray, Validators } from "@angular/forms";
@Component({
selector: "app-reactive-forms",
templateUrl: "./reactive-forms.component.html",
styleUrls: ["./reactive-forms.component.css"]
})
export class ReactiveFormsComponent implements OnInit {
ourForm: FormGroup;
isSkill: boolean = false;
defaultApps: FormGroup;
constructor() { }
ngOnInit() {
this.defaultApps = new FormGroup({
common: new FormGroup({
name: new FormControl(null),
profession: new FormControl(null),
enableSkill: new FormControl(false)
}),
skills: new FormArray([])
});
this.initForm();
// this.fnGetCheckBoxVal();
}
initSkills() {
return new FormGroup({
common: new FormGroup({
name: new FormControl(null),
profession: new FormControl(null),
enableSkill: new FormControl(false)
}),
skills: new FormArray([])
});
}
initForm() {
this.ourForm = new FormGroup({
"apps": new FormArray([
this.initSkills()
])
});
// (this.ourForm.get('apps') as FormArray).push(this.defaultApps);
}
// get formSkills() {
// // return (<FormArray>this.ourForm.get("skills")).controls;
// return (app.get('skills') as FormArray).controls;
// }
getSkills(control: FormArray) {
return (control.get('skills') as FormArray).controls;
}
fnOnAddSkill(app: FormControl, ind: number) {
console.log(ind);
const control = new FormControl(null, Validators.required);
const myForm = app.get("skills") as FormArray;
myForm.push(control);
}
fnSave() {
console.log(this.ourForm);
// console.log(this.ourForm.get('common').get('enableSkill'));
}
fnGetCheckBoxVal(value, index) {
// //.get('common').get("enableSkill")
// (this.ourForm.get('apps') as FormArray).valueChanges.subscribe(value => {
// console.log(value);
// value ? (this.isSkill = true) : (this.isSkill = false);
// });
console.log(value, index);
value ? (this.isSkill = true) : (this.isSkill = false);
}
fnOnAddProfile() {
(this.ourForm.get('apps') as FormArray).push(this.initSkills());
}
}
任何帮助将不胜感激。提前致谢。
最佳答案
您对所有配置文件使用相同的 bool 标志 isSkill
,因此当您切换一个复选框时,它会切换所有。每个配置文件的 bool 标志必须是唯一的。我看到您已经有了 bool 形式控件 enableSkill
。您可以利用它,然后您也不需要更改事件。因此,完全删除 fnGetCheckBoxVal(value, index)
,而不是:
<div *ngIf="isSkill" id="skillBox">
使用:
<div *ngIf="app.get('common.enableSkill').value">
我不知道当您关闭它时,您是否真的想删除为配置文件输入的技能,但这是一个单独的问题。
这是我所做更改的演示: StackBlitz
关于angular - 我们如何在嵌套的 Angular Reactive Form 方法中使用复选框隐藏某些 DOM 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54596528/
类型‘AbstractControl’上不存在属性‘Controls’。
主要是我很好奇。 我们有一个名为 Unit 的对象在我们的代码库中 - 代表桥梁或道路的组件。在我们的例子中,看到带有 Unit 的 ReactiveUI 命令可能会模棱两可。作为声明中的泛型之一。
我一直听说六边形架构必须与任何框架无关,并使用接口(interface) (SPI) 来委托(delegate)不属于业务层的每个代码部分。 但是如何在不使用额外框架的情况下通过六边形架构创建一个响应
我读了 Reactive Manifesto . 但我无法理解 event driven architectures 之间的核心差异和 message driven architectures .结果
申请要求: 订阅两个事件流 A 和 B 对于每个 A 事件,一段时间后应该有相应的 B 事件 如果没有相应的 B 到达(及时),应用程序会监视 A 事件并发出警报 B 事件可以以与 A 事件不同的顺序
Closed. This question is opinion-based。它当前不接受答案。 想改善这个问题吗?更新问题,以便editing this post用事实和引用来回答。 4年前关闭。
我有一个 ViewModel,它在其初始化程序中有一个输入 init(sliderEvents: Reactive) { 在测试中我想做类似的事情 slider.send(.touchDownInsi
经典实时搜索示例: var searchResults = from input in textBoxChanged from results in GetDa
我有一个响应式(Reactive)管道来处理传入的请求。对于每个请求,我需要调用一个与业务相关的函数 ( doSomeRelevantProcessing )。 完成后,我需要将发生的事情通知一些外部
是否可以为响应式扩展实现基于硬件计时器的自定义调度程序?我该如何开始,有什么好的例子吗? 我有一个硬件可以每毫秒向我发送一个准确的中断。我想利用它来创建更精确的 RX 调度程序。 更新 感谢 Asti
我正在通过网络浏览 Rx 框架 Material ,我发现了很多。 现在,每当我为此在 google 上搜索时,我还会在 wikipedia 链接中找到“响应式(Reactive)编程”。 由于响应式
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 6年前关闭。 Improve this
SignalR 与响应式扩展是同一回事吗?你能解释一下为什么或为什么不吗? 最佳答案 不,它们绝对不是同一件事。 Reactive Extensions 是一个用于创建和组合可观察的数据流或事件流的库
我知道有一种简单的方法可以做到这一点 - 但今晚它打败了我...... 我想知道两个事件是否在 300 毫秒内发生,就像双击一样。 在 300 毫秒内单击两次左键鼠标 - 我知道这是构建响应式(Rea
我们的应用程序使用 Reactive Extensions (Rx)。这些通常通过 Microsoft 的可下载包安装。但是,当我们发布应用程序时,我们会提供 dll 的副本(即 System.Cor
我想了解 Reactive 和 ReactiveStreams 之间的区别,特别是在 RxJava 的上下文中? 我能想到的最多的是 Reactive Streams 在规范中有一些背压的概念,但它已
我想探索来自 Quarkus 的响应式 REST 客户端的慢速后端,并在他们建议的样本 (https://github.com/quarkusio/quarkus-quickstarts/tree/m
假设我有一个存储桶,我需要从中获取日期早于现在的文档。 该文档如下所示: { id: "1", date: "Some date", otherObjectKEY: "key1" } 对于每个文档,我
我有一个 RIA 服务数据服务,它有几个函数调用,如下所示: public InvokeOperation SomeFunc( SomeData data, Action> callb
我一直在使用 Rx 在单个应用程序中创建事件总线(想想 CQRS/ES),它似乎工作得很好。然而,在调查了一堆不同的事件溯源框架之后,我还没有看到使用过一次 Rx。与基于反射/容器的调度程序相比,它似
我是一名优秀的程序员,十分优秀!