Angular - Submit a form programmatically

后端 未结 5 533
深忆病人
深忆病人 2021-02-07 02:40

Angular - Submit a form programmatically.

I have a form group on the HTML and I want the component to submit the form\'s action with an email field in a post method. Ins

5条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-07 03:14

    import { Component, ViewChild } from '@angular/core';
    
    @Component({
        template: `
            
    ` }) class MyComponent { @ViewChild('testForm') testFormEl; testMethod() { this.testFormEl.nativeElement.submit() } }

提交回复
热议问题