美文网首页
angular 动态添加/删除 control

angular 动态添加/删除 control

作者: 前端小白的摸爬滚打 | 来源:发表于2021-07-30 10:36 被阅读0次

angular 动态添加/删除 control

                // true --- 选项为文本 不需要上传选项图片
                if (displayText) {
                    this.optionsForm.controls.forEach((group: FormGroup) => {
                        group.removeControl('imageUrl')
                    });
                } else {
                    this.optionsForm.controls.forEach((group: FormGroup) => {
                        group.addControl('imageUrl', this.fb.control('', Validators.required))
                    })

相关文章

网友评论

      本文标题:angular 动态添加/删除 control

      本文链接:https://www.haomeiwen.com/subject/hvlxvltx.html