我对Angular不熟悉。我遇到了提交按钮的问题。当我单击提交类型的按钮时,它会重新加载整个页面。而不是调用我的服务API。
即使我在表单标签上添加了(keydown.enter)=“ $ event.preventDefault()”,在Button单击方法中,我也尝试使用event.preventDefault()。但是没有用。
请检查我下面的代码
<form #createForm="ngForm" class="login-form text-center" (ngSubmit)="Update()" (keydown.enter)="$event.preventDefault()">
<table cellpadding="5" class="mx-auto">
<tr>
<td>
<label class="white pr-2" for="email" autofocus>Email</label>
</td>
<td>
<input name="email" id="email" type="text" [(ngModel)]="email" required #name="ngModel"class="d-inline-block w-100" >
</td>
</tr>
<tr>
<td></td>
<td class="text-left">
<button class="d-inline-block text-left lh-100" id="login" type="submit" [disabled]="!createForm.form.valid">Change Password
</button>
<button class="float-right lh-100" style="background-color:grey" [routerLink]="'/login'" >Back to Login</button>
</td>
</tr>
</table>
</form>
这是我的.ts代码。按钮更新方法
Update()
{
this.userservice.changePassword(this.email).pipe(first())
.subscribe(
data =>
{
if(!data.message)
{
this.errorMsg = data.message;
}
else
{
this.errorMsg = data.message;
}
},
error => {
this.errorMsg = error.Message;
});
}
这是服务代码
changePassword(EmailId: string) {
return this.http.get<Validations>(`${environment.apiUrl}/User/SendMail?userName=` + EmailId+`&subject=`+''+`&message=`+''+`&mailType=`+'changepassword');
}
app.module.ts文件
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { GridModule } from '@progress/kendo-angular-grid';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { LoginComponent } from './common/login/login.component';
import { ForgotPwdComponent } from './common/forgotPwd/forgotPwd.component';
import { BlankComponent } from './common/blank/blank.component';
import { ResetComponent } from './common/reset/reset.component';
@NgModule({
declarations: [
AppComponent,
LoginComponent,
ForgotPwdComponent,
ResetComponent,
BlankComponent,
],
imports: [
BrowserModule,
FormsModule,
AppRoutingModule,
GridModule,
BrowserAnimationsModule,
HttpClientModule,
],
请提出如何防止在提交按钮后重新加载页面并执行我的服务电话的请求。
答案 0 :(得分:1)
如果将 FormsModule
添加到 app.module.ts
,如下所示:
@NgModule({
imports: [
BrowserModule,
FormsModule,
],
...
})
并用ng serve
重新启动它(如果ng serve
进程正在运行,则停止它并再次运行),则此问题将得到解决。
答案 1 :(得分:0)
如果 onSubmit 中存在错误,则会刷新。请确保已导入 来自** @ angular / forms 的FormsModule和ReactiveFormsModule **在您各自的module.ts或 app.module.ts
中app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { ReactiveFormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { HeroFormComponent } from './hero-form/hero-form.component';
@NgModule({
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule
],
declarations: [
AppComponent,
HeroFormComponent
],
providers: [],
bootstrap: [ AppComponent ]
})
export class AppModule { }