搜索过滤器为angular2 + ionic2

时间:2016-08-01 10:16:26

标签: angular typescript ionic-framework ionic2 ionic3

我想用ionic2 + angular2实现搜索功能。在之前的版本中,我使用了This Filter Example 但在较新版本中,这不起作用。

如何使用angular2 + ionic2?

1 个答案:

答案 0 :(得分:3)

您可以使用Searchbar component。请查看此working plunker

这很容易使用,首先在Component中确保要在视图中显示要显示的项目列表。

import { Component } from "@angular/core";
import { NavController } from 'ionic-angular/index';

@Component({
     templateUrl:"home.html"
})
export class HomePage {

  constructor() {
    this.initializeItems();
  }

  initializeItems() {
    this.items = [
      'Amsterdam',
      'Bogota',
      'Buenos Aires',
      'Dhaka'
    ];
  }

  getItems(ev) {
    // Reset items back to all of the items
    this.initializeItems();

    // set val to the value of the searchbar
    let val = ev.target.value;

    // if the value is an empty string don't filter the items
    if (val && val.trim() != '') {
      this.items = this.items.filter((item) => {
        return (item.toLowerCase().indexOf(val.toLowerCase()) > -1);
      })
    }
  }
}

就像你在该代码中看到的一样,神奇的是在这些代码行中完成:

// if the value is an empty string don't filter the items
if (val && val.trim() != '') {
  this.items = this.items.filter((item) => {
    return (item.toLowerCase().indexOf(val.toLowerCase()) > -1);
  })
}

因此,每次输入内容时,我们都会过滤包含您在搜索栏中输入内容的项目。然后在您的视图中添加此代码:

<ion-header>
  <ion-navbar primary>
    <ion-title>
      Ionic 2
    </ion-title>
  </ion-navbar>
</ion-header>
<ion-content>
  <ion-searchbar (ionInput)="getItems($event)"></ion-searchbar>
  <ion-list>
    <ion-item *ngFor="let item of items">
      {{ item }}
    </ion-item>
  </ion-list>

</ion-content>

请注意,我们通过以下方式将ionInput元素从ion-searchbar元素绑定到getItems方法:

(ionInput)="getItems($event)