在我的angular 5应用程序中,我需要以编程方式提交隐藏字段的表单,我的3个字段绑定到变量。
<form #testForm name="form1" action="paymentUrl" method="post">
<input type="hidden" name="url" [(ngModel)]="paymentUrl">
<input type="hidden" name="xml" [(ngModel)]="paymentXml">
<input type="hidden" name="hash" [(ngModel)]="paymentHash">
</form>
在.ts中我有:
@ViewChild('testForm') testFormEl: any;
this.testFormEl.nativeElement.submit()