私は新しいアプリを開発しようとしていますが、アプリで角度を使用しようとしましたが、私は新しく、向きが必要です。 filter.pipe2つのリストで角度4の検索
if(term===undefined) return listA;
return listA.filter(function(hero){
return hero.prefix.includes(term));
})
<form id="filter">
<label>Searching for tel.no</label>
<input type="text" ng-model="term" />
</form>
<ul *ngFor="let hero of listA |filter:term">
<div class="single-hero">
{{hero.price}}
</div>
</ul>
は現在、それは私に定義されていない用語を与える
ヘルプをにappriciatedされるだろうexport class AppComponent {
li = []; lu=[]
?正確である。あなたのデータはどのように見えますか? –
フルコンポーネントコードとフルパイプをご提供ください。 –
@RayLuxembourg {prefix:11、price:20}、2つのリストを検索する検索をしようとしています –