如何在 ionic 2(搜索栏)中进行自动完成
How to do auto-complete in ionic 2 (search-bar)
我正在尝试在我的搜索栏中进行自动完成,我目前所做的是。
我有一个包含一些字符串的数组。然后我试图在我的项目中列出它我能够搜索特定项目。
但我的要求不是在列表中显示项目。我必须点击搜索栏,数组中的所有字符串都应该出现,我必须进行搜索。
<ion-header>
<ion-navbar>
<ion-title>search</ion-title>
</ion-navbar>
<ion-toolbar primary >
<ion-searchbar (ionInput)="getItems($event)" autocorrect="off"></ion-searchbar>
</ion-toolbar>
</ion-header>
<ion-content padding>
<ion-list>
<ion-item *ngFor="let item of items">
{{ item }}
</ion-item>
</ion-list>
</ion-content>
search.ts 文件的代码:
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
/*
Generated class for the SearchPage page.
See http://ionicframework.com/docs/v2/components/#navigation for more info on
Ionic pages and navigation.
*/
@Component({
templateUrl: 'build/pages/search/search.html',
})
export class SearchPage {
private searchQuery: string = '';
private items: string[];
constructor(private navCtrl: NavController) {
this.initializeItems();
}
initializeItems() {
this.items = [
'Amsterdam',
'Bogota',
]
}
getItems(ev: any) {
// 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);
})
}
}
}
问题:
How to get the value of an array through auto complete in ionic 2.
为了实现这一点,您只需在代码中添加一些小东西。请看this plunker.
如您所见,使用 showList
变量我们可以仅在用户搜索后显示结果。
<ion-list *ngIf="showList">
<ion-item *ngFor="let item of items">
{{ item }}
</ion-item>
</ion-list>
我们首先在 constructor
中将该变量设置为 false
,然后在 getItems(...)
方法中将其设置为 true
。
我正在尝试在我的搜索栏中进行自动完成,我目前所做的是。
我有一个包含一些字符串的数组。然后我试图在我的项目中列出它我能够搜索特定项目。
但我的要求不是在列表中显示项目。我必须点击搜索栏,数组中的所有字符串都应该出现,我必须进行搜索。
<ion-header>
<ion-navbar>
<ion-title>search</ion-title>
</ion-navbar>
<ion-toolbar primary >
<ion-searchbar (ionInput)="getItems($event)" autocorrect="off"></ion-searchbar>
</ion-toolbar>
</ion-header>
<ion-content padding>
<ion-list>
<ion-item *ngFor="let item of items">
{{ item }}
</ion-item>
</ion-list>
</ion-content>
search.ts 文件的代码:
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
/*
Generated class for the SearchPage page.
See http://ionicframework.com/docs/v2/components/#navigation for more info on
Ionic pages and navigation.
*/
@Component({
templateUrl: 'build/pages/search/search.html',
})
export class SearchPage {
private searchQuery: string = '';
private items: string[];
constructor(private navCtrl: NavController) {
this.initializeItems();
}
initializeItems() {
this.items = [
'Amsterdam',
'Bogota',
]
}
getItems(ev: any) {
// 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);
})
}
}
}
问题:
How to get the value of an array through auto complete in ionic 2.
为了实现这一点,您只需在代码中添加一些小东西。请看this plunker.
如您所见,使用 showList
变量我们可以仅在用户搜索后显示结果。
<ion-list *ngIf="showList">
<ion-item *ngFor="let item of items">
{{ item }}
</ion-item>
</ion-list>
我们首先在 constructor
中将该变量设置为 false
,然后在 getItems(...)
方法中将其设置为 true
。