p-autoCompleteに文字列をコピーして貼り付けても問題ありません。私はちょうどあなたがそれで光を見つけることを望む私の方法を共有するつもりです。
HTML:私は、パラメータとしてcompleteMethodにモデルを渡す
<p-autoComplete [style]="{'width':'100%'}" name="searchSuggestions"
[(ngModel)]="suggestion" (completeMethod)="searchSuggestions(suggestion)"
[suggestions]="searchSuggestionsResult" field="field">
</p-autoComplete>
注意してください。
ああ、私は角2
Tsのためtypescriptですを使用していますによって:
searchSuggestions(suggestion) {
this.searchSuggestionsResult = [];
if(suggestion != "") {
var list = this.searchSuggestionsResult.filter(function(el) {
return (el) ? el.toLowerCase().startsWith(suggestion.toLowerCase()) : false;
});
list.sort((a,b) => a.toLowerCase().localCompare(b.toLowerCase());
list.forEach(element => {
this.searchSuggestionsResult.push(element);
});
} else {
this.searchSuggestionsResult = [];
}
}
はそれが役に立てば幸い!
実際にオートコンプリート機能を使用していないため、「選択」イベントとして登録していないので、テキストを貼り付けているかどうかは分かりません。コピー&ペーストについて説明しているユースケースが適しています: '' –
私は自動提案が必要です@David – Veera