角度推送功能存在问题,如何在推送之前格式化表单组?

时间:2019-12-19 14:28:36

标签: angular

这是我将表单组保存到数组中的函数,并且出现此错误:

  

错误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)
    }

0 个答案:

没有答案