这是我将表单组保存到数组中的函数,并且出现此错误:
错误TypeError:control.setParent不是函数
我的代码:
saveInvolvedParty(){
if( this.From_type=='') {
this.toaster.warning("Plase select InvolvedParty Type")
}
else {
let parti:any=this.transactionControl.controls.involvedParties
parti.push('tparty',this.involvedParty)
console.log('control...',parti);
console.log('control...',this.transactionControl);
this.sendInvolvedPartyToList.emit(this.tparty)
}