Odpowiedzi:
Służy (eventName)
do wiązania zdarzenia do DOM, w zasadzie ()
służy do wiązania zdarzenia. Służy także ngModel
do uzyskania dwukierunkowego wiązania myModel
zmiennej.
Narzut
<input type="text" [(ngModel)]="myModel" (blur)="onBlurMethod()">
Kod
export class AppComponent {
myModel: any;
constructor(){
this.myModel = '123';
}
onBlurMethod(){
alert(this.myModel)
}
}
Alternatywa (nie preferowana)
<input type="text" #input (blur)="onBlurMethod($event.target.value)">
Aby formularz oparty na modelu uruchamiał walidację blur
, można przekazać updateOn
parametr.
ctrl = new FormControl('', {
updateOn: 'blur', //default will be change
validators: [Validators.required]
});
Możesz również użyć zdarzenia (focusout) :
Służy (eventName)
do wiązania zdarzenia do DOM, w zasadzie ()
służy do wiązania zdarzenia. Możesz także użyć, ngModel
aby uzyskać dwukierunkowe wiązanie dla swojego pliku model
. Z pomocą ngModel
ciebie możesz manipulować model
wartością zmiennej wewnątrz twojego component
.
Zrób to w pliku HTML
<input type="text" [(ngModel)]="model" (focusout)="someMethodWithFocusOutEvent($event)">
Oraz w pliku (komponentu) .ts
export class AppComponent {
model: any;
constructor(){ }
someMethodWithFocusOutEvent(){
console.log('Your method called');
// Do something here
}
}
someMethodWithFocusOutEvent
program zapętli się, gdy alert powoduje utratę ostrości pola, czy istnieje sposób, aby to naprawić?
HTML
<input name="email" placeholder="Email" (blur)="$event.target.value=removeSpaces($event.target.value)" value="">
TS
removeSpaces(string) {
let splitStr = string.split(' ').join('');
return splitStr;
}
/*for reich text editor */
public options: Object = {
charCounterCount: true,
height: 300,
inlineMode: false,
toolbarFixed: false,
fontFamilySelection: true,
fontSizeSelection: true,
paragraphFormatSelection: true,
events: {
'froalaEditor.blur': (e, editor) => { this.handleContentChange(editor.html.get()); }}
Oto proponowana odpowiedź w repozytorium Github:
// example without validators
const c = new FormControl('', { updateOn: 'blur' });
// example with validators
const c= new FormControl('', {
validators: Validators.required,
updateOn: 'blur'
});
Github: feat (formularze): dodaj opcję updateOn blur do FormControls
Spróbuj użyć (focusout) zamiast (blur)