本文整理汇总了TypeScript中@angular/forms.FormGroup.disable方法的典型用法代码示例。如果您正苦于以下问题:TypeScript FormGroup.disable方法的具体用法?TypeScript FormGroup.disable怎么用?TypeScript FormGroup.disable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@angular/forms.FormGroup
的用法示例。
在下文中一共展示了FormGroup.disable方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: signIn
signIn() {
this.form.disable();
this.authService.signIn(this.form.value)
.pipe(
first(),
tap(() => this.form.enable(), () => this.form.enable()),
)
.subscribe(
() => this.router.navigateByUrl('/'),
(error: HttpErrorResponse) => setValidationErrors(this.form, error),
);
}
示例2: addRepository
addRepository() {
this.isProcessing = true;
this.addRepositoryForm.disable();
this.http.post(
'/v1/api/helm/repositories',
this.addRepositoryForm.getRawValue()
).pipe(
catchError(error => {
this.notifications.display('error', '', error.statusText);
return of(new ErrorEvent(error));
})
).subscribe(result => {
this.isProcessing = false;
this.addRepositoryForm.enable();
// TODO
if (!(result instanceof ErrorEvent)) {
window.location.reload();
}
});
}
示例3: login
/**
* Login with current user/pass
*/
public login(): void {
if (this.formGroup.valid) {
this.formGroup.disable();
// -->Set: data
const data = this.formGroup.getRawValue();
data.grant_type = 'password';
this.http.login(data)
.subscribe(ok => {
this.router.navigate(['/dashboard']);
}, err => {
console.error('error', err);
setTimeout(() => { this.formGroup.enable(); }, 1500);
});
} else {
const errors = SuperForm.getAllErrorsFlat(this.formGroup);
console.error(errors);
}
}
示例4: ngOnInit
ngOnInit() {
if (!this.form.get('from').value || this.form.get('from').value === 'system') {
this.form.get('from').setValue('system');
this.form.disable();
}
}