我有书名的搜索输入,我需要它来查找书籍而不重新加载页面。我的代码在他重新加载页面时工作,我输入书名并推送提交。
如何重写此代码才能使用observable,从而在不重新加载页面的情况下搜索图书?
filterByName(){
this.filteredItems = [];
if(this.inputName != ""){
this.books.forEach(element => {
if(element.author.toUpperCase().indexOf(this.inputName.toUpperCase())>=0 ||
element.title.toUpperCase().indexOf(this.inputName.toUpperCase())>=0){
this.filteredItems.push(element);
}
});
}else{
this.filteredItems = this.books;
}
console.log(this.filteredItems);
this.init();
}
HTML:
<div class="form-group">
<label>Filter </label>
<input type="text" id="inputName" [(ngModel)]="inputName"/>
<input type="button" (click)="filterByName()" value="Apply"/>
</div>
答案 0 :(得分:1)
您不需要使用observable,如果您更新组件中的filteredItems
变量,它将在您的视图中更新,例如:
filterByName() {
if(this.inputName.length < 1) {
return;
}
this.filteredItems = this.books.filter(book => {
return book.author.toUpperCase().indexOf(this.inputName.toUpperCase()) >= 0 ||
book.title.toUpperCase().indexOf(this.inputName.toUpperCase()) >= 0
});
}
并在您看来:
<div class="form-group">
<label>Filter </label>
<input type="text" id="inputName" [(ngModel)]="inputName"/>
<input type="button" (click)="filterByName()" value="Apply"/>
</div>
<ul>
<li *ngFor="let book in filteredBooks">{{ book.title }} - {{ book.author }}</li>
</ul>