我正在我的角度应用程序中使用FormArray构建一个表单: experiences: new FormArray([])用户可以将体验添加到数组中: const formGroup = new FormGroup({ /* creating a formgroup*/})
(<FormArray> this.form.get(
请您告诉我如何将输入字段type=“密码”转换为type=“.In”,我的演示中有两个输入字段Mobile no和Re-enter mobile number,如果用户输入相同的10数字,则将type=示例:如果您输入移动号码9891234567和重新输入密码9891234567,则两个字段都要保密到type="text“。我们能在角度上做到这一点吗?这是我的代码
import { Component } from '@angular/co