在我使用
提交表单后,有人可以帮我找出为什么我的值在最后返回小写从'@ angular / forms'导入{FormGroup,FormControl,Validators};
这是我的代码
component.ts
import { Component, Directive, OnInit, OnDestroy} from '@angular/core';
import { FormGroup, FormControl, Validators } from '@angular/forms';
import {UppercaseDirective} from '../uppercase.directive';
@Component({ selector: 'app-storageentry',
templateUrl: './storageentry.component.html',
styleUrls: ['./storageentry.component.css']
})
export class StorageentryComponent implements OnInit, OnDestroy {
storageForm: FormGroup;
private initForm(){
let storageDescription: string;
//pass the formControl specified by '' to use in HTML
this.storageForm = new FormGroup({
description: new FormControl(storageDescription, Validators.required)
})
}
}
ngOnInit() {
this.initForm();
}
onSubmit(){
this.storageEntryService.addStorage(this.storageForm.value);
this.storageForm.reset();
}
uppercase.directives.ts
import { Directive, HostListener, Renderer, ElementRef } from '@angular/core';
@Directive({
selector: '[uppercase]'
})
export class UppercaseDirective{
constructor(
private renderer: Renderer,
private el: ElementRef
){}
@HostListener('input') input() {
this.el.nativeElement.value=this.el.nativeElement.value.toUpperCase();}
}
component.html
<div class="form-group input-holder">
<label class="col-lg-2">Description</label>
<div class="col-lg-4">
<small [ngClass]="{'prompterror': storageForm.controls.description.valid || storageForm.controls.description.pristine}">
*required
</small>
<input type="text" class="input-field" placeholder="Description" formControlName="description" uppercase>
</div>
</div>
答案 0 :(得分:1)
角度形式控件侦听元素的“input”事件。看起来你的指令也是如此,但是在指令更新值之后,ngControl直到下一个输入事件发生时才知道它。因此,在数据结束时,表单控件始终具有输入的值。您可以从指令发送“输入”事件,但我怀疑它会循环。你可以尝试听keydown / keyup事件或某些指令,然后发出'input'事件。
当指令与表单控件一起使用时,我认为最好为指令扩展ControlValueAccessor。请参阅以下问题的一些答案,以获得一些好的例子: -
How to convert input value to uppercase in angular 2 (value passing to ngControl)