gpt4 book ai didi

javascript - 提交按钮不起作用/没有反应

转载 作者:行者123 更新时间:2023-11-28 12:16:52 26 4
gpt4 key购买 nike

我是 Angular 2 和 Typescript 的新手,但我正在尝试构建一个 Web 应用程序。我构建了一些输入字段,并希望在通过按钮提交它们后将它们记录到控制台。但我的按钮实际上不起作用或没有反应。

有人知道我的代码有什么问题吗?

这是我的代码:

app.component.html

  <div class="panel panel-primary">
<div class="panel-heading">Status</div>
<div class="panel-body">
<h3>{{title}}</h3>
<form #userForm="ngForm" (ngSubmit)="onSubmit(userForm.value)">
<div class="form-group">
<label>Name</label>
<input type="text" class="form-control" name="name" ngModel>
</div>
<div class="form-group">
<label>Email</label>
<input type="text" class="form-control" name="email" ngModel>
</div>
<div class="form-group">
<label>Street</label>
<input type="text" class="form-control" name="street" ngModel>
</div>
<div class="form-group">
<label>PLZ</label>
<input type="text" class="form-control" name="plz" ngModel>
</div>
</form>
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>

app.component.ts

import { Component, style } from '@angular/core';
import { TutorialsComponent } from './tutorial.component';
import { SteliosComponent } from './stelios.component';



@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']

})
export class AppComponent {
public title ="Das ist die erste Componente"
public childData: string;
onSubmit(value: any){
console.log(value);
}
}

最佳答案

您的按钮不在您的表单中。将其放入您的表格中即可开始!

关于javascript - 提交按钮不起作用/没有反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47416141/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com