我对Typescript和Ionic 2很新,我试图通过Ionic 2搜索栏过滤json响应。
这是我的代码:
import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';
import {Http} from '@angular/http';
import 'rxjs/add/operator/map';
@Component({
templateUrl: 'build/pages/home/home.html'
})
export class HomePage {
posts: any;
private searchQuery: string = '';
private items: string[];
constructor(private http: Http) {
this.initializeItems();
this.http.get('https://domain.co/open.jsonp').map(res => res.json()).subscribe(data => {
this.posts = data;
console.log(this.posts);
});
}
initializeItems() {
this.items = this.posts;
}
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);
})
}
}
}
标记:
<ion-header>
<ion-searchbar (ionInput)="getItems($event)" [debounce]="500" placeholder="Suchen..."></ion-searchbar>
</ion-header>
<ion-content>
<ion-list>
<ion-item *ngFor="let post of posts">
<h1>{{post.storeName}}</h1>
</ion-item>
</ion-list>
</ion-content>
我搜索时出现此错误:
item.toLowerCase不是函数
JSON数据如下所示:
[
{
storeName: "Avec Hauptbahnhof",
addressLink: "",
phone: "0326223902",
image: "",
description: "",
link: "",
openingHours: [
"05.30 - 22:00",
"05.30 - 22:00",
"05.30 - 22:00",
"05.30 - 22:00",
"05.30 - 22:00",
"06.30 - 22:00",
"7.00 - 22.00"
]
},
{
storeName: "Manor",
addressLink: "",
phone: "0326258699",
image: "",
customer: "",
description: "",
link: "",
openingHours: [
"09.00 - 18.30",
"09.00 - 18.30",
"09.00 - 18.30",
"09.00 - 21:00",
"09.00 - 18.30",
"08.00 - 17.00",
"Geschlossen"
]
}
]
答案 0 :(得分:23)
您收到该错误是因为每个项不是字符串,而是一个对象,因此不是
item.toLowerCase().indexOf(val.toLowerCase()) > -1
你应该做
item.storeName.toLowerCase().indexOf(val.toLowerCase()) > -1
另请注意,在您的视图中,您使用的是帖子数组
*ngFor="let post of posts"
但你应该使用 items 数组,因为那是将要过滤的那个
<ion-list>
<ion-item *ngFor="let item of items">
<h1>{{item.storeName}}</h1>
</ion-item>
</ion-list>
除此之外,我会做一些不同的事情,只是为了确保用户能够在数据可用时使用页面(因为你使用的是http)要求获得它)。为了做到这一点,我会添加一个加载警报,并在http请求完成后立即将其删除。从Ionic2-beta.11开始,你可以这样做:
import { Component } from '@angular/core';
import { NavController, LoadingController } from 'ionic-angular';
import { Http } from '@angular/http';
import 'rxjs/add/operator/map';
@Component({
templateUrl: 'build/pages/home/home.html'
})
export class HomePage {
private posts: any; // <- I've added the private keyword
private searchQuery: string = '';
private items: any; // <- items property is now of the same type as posts
constructor(private http: Http, private loadingCtrl: LoadingController) {
// this.initializeItems(); <- you don't need this anymore
// Show the loading message
let loadingPopup = this.loadingCtrl.create({
content: 'Loading posts...'
});
this.http.get('https://domain.co/open.jsonp').map(res => res.json()).subscribe(data => {
this.posts = data;
this.initializeItems();
// Hide the loading message
loadingPopup.dismiss();
});
}
initializeItems() {
this.items = this.posts;
}
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.storeName.toLowerCase().indexOf(val.toLowerCase()) > -1);
})
}
}
}
答案 1 :(得分:0)
当我使用离合器在角度2中工作时,我遇到了同样的问题。
在我们的项目中,我们有一种方法可以获取所有产品列表并使用* ngFor显示项目。
每当我们使用离子搜索栏进行搜索时,将使用“event.target.value”获取输入搜索文本。我们必须检查项目中的搜索文本是否匹配。
代码是,
getAllProdcuts(isFrom, searchText){
this.toDoService.getAllProdcuts().then((res) => {
this.items = res;
if(isFrom == 'search') {
this.items = this.items.filter((item) => {
return (item.toLowerCase().indexOf(searchText.toLowerCase()) > -1);
})
}
}, (err) => {
});
}
getItems(ev: any) {
// 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.getAllProdcuts("search", val);
}
}
在这里,我们可以从方法中获取过滤后的项目。
感谢!