以下のコードでは、span
要素がクリックされたときにremoveSelectedCountry()
を呼び出し、keydown
でdiv
イベントが発生したときにhandleKeyDown($event)
を呼び出す必要があります。
@Component({
selector: "wng-country-picker",
template: `
<ul class="CountryPicker-selected" *ngIf="selectedCountries.length > 0">
<li *ngFor="let country of selectedCountries">
<span class="Pill Pill--primary" (click)="removeSelectedCountry(country)">
{{ country.name }}
</span>
</li>
</ul>
<div (keydown)="handleKeyDown($event)" class="CountryPicker-input"></div>
`,
providers: [CUSTOM_VALUE_ACCESSOR]
})
しかし、removeSelectedCountry()
は毎回呼び出されます Enter キーが押されました。
コードを機能させるには、click
イベントをmousedown
イベントに変更する必要がありました。今は正常に動作します。
誰でも理由を説明できますか Enter キーはclick
イベントをトリガーしますか?
@Component({
selector: "wng-country-picker",
template: `
<ul class="CountryPicker-selected" *ngIf="selectedCountries.length > 0">
<li *ngFor="let country of selectedCountries">
<span class="Pill Pill--primary" (mousedown)="removeSelectedCountry(country)">
{{ country.name }}
</span>
</li>
</ul>
<div (keydown)="handleKeyDown($event)" class="CountryPicker-input"></div>
`,
providers: [CUSTOM_VALUE_ACCESSOR]
})
クラススニペットの追加:
export class CountryPickerComponent {
private selectedCountries: CountrySummary[] = new Array();
private removeSelectedCountry(country: CountrySummary){
// check if the country exists and remove from selectedCountries
if (this.selectedCountries.filter(ctry => ctry.code === country.code).length > 0)
{
var index = this.selectedCountries.indexOf(country);
this.selectedCountries.splice(index, 1);
this.selectedCountryCodes.splice(index, 1);
}
}
private handleKeyDown(event: any)
{
if (event.keyCode == 13)
{
// action
}
else if (event.keyCode == 40)
{
// action
}
else if (event.keyCode == 38)
{
// action
}
}
Enterキーの場合は、(keyup.enter)
を使用しないでください:
@Component({
selector: 'key-up3',
template: `
<input #box (keyup.enter)="values=box.value">
<p>{{values}}</p>
`
})
export class KeyUpComponent_v3 {
values = '';
}
(keyup.enter)
を使用します。
Angularは、重要なイベントをフィルタリングできます。 Angularには、キーボードイベント用の特別な構文があります。 Angularのkeyup.enter
疑似イベントにバインドすることにより、Enterキーのみをリッスンできます。
正しいソリューション!ボタンには定義済みの属性タイプがないため、angularは、キーアップイベントを送信要求として発行し、ボタンのクリックイベントをトリガーしようとしている可能性があります。
<button type="button" ...></button>
DeborahKに感謝します!
@Component({
selector: 'key-up3',
template: `
<input #box (keyup.enter)="doSomething($event)">
<p>{{values}}</p>
`
})
export class KeyUpComponent_v3 {
doSomething(e) {
alert(e);
}
}
これは私のために働く!
<form (keydown)="someMethod($event)">
<input type="text">
</form>
someMethod(event:any){
if(event.keyCode == 13){
alert('Entered Click Event!');
}else{
}
}
angular 6には、新しい方法があります。入力タグに追加します
(keyup.enter)="keyUpFunction($event)"
keyUpFunction($event)
は関数です。