gpt4 book ai didi

text - angular2 rxjs 过滤线程与输入文本

转载 作者:太空狗 更新时间:2023-10-29 18:34:16 25 4
gpt4 key购买 nike

您好,我正在构建一个类似 stackoverflow 的小型论坛,我正在尝试为我的线程标题实现一个简单的文本过滤器。

我最近开始学习 rxjs 和管道,所以这是我到目前为止遇到的两个问题

  1. 我不确定应该使用哪种方法来解析标题,我目前正在使用 string.include() 但它无法正常工作(例如,如果我键入 who,则显示“how”,如果我键入“如何”然后“谁”显示...

更新:到目前为止,主要错误似乎是管道只收到第一个字母......但不知道是什么原因造成的。

  1. 我使用的是纯管道,属性通过主题传递给它,不确定这是否是最佳实践方式...

https://plnkr.co/edit/VViLYFd5oFTwNqP9eoZi?p=preview

感谢您的帮助和建议

组件

@Component({
selector: 'dashboard-main',
pipes:[FilterTitle],
template:`
<input type="text" id="title" [(ngModel)]="binding" (keyup)="trigger()">
<h3>{{binding}}</h3>
<hr>
<h3>{{testText}}</h3>
<hr>
<ul>
<li *ngFor="#thread of threadlist | filterTitle:testText">{{thread.title}}</li>
</ul>
`
})
export class DashboardMainComponent implements OnInit{

binding:string='Input';
text$:Subject<string> = new Subject<string>();
testText:string="";

ngOnInit():any {
this.text$.debounceTime(500).distinctUntilChanged().subscribe( text => this.setText(text))
}

trigger(){
this.text$.next(this.binding);
}

setText(text:string){
console.log(text);
this.testText = text;
}

threadlist=[
{
title:'Who are you?'
},
{
title:'How are you?'
},
{
title:'Where are you?'
}
]
}

管道

@Pipe({
name:'filterTitle',

})

export class FilterTitle implements PipeTransform{
transform(array:any[], [search]):any {
if(search ===''){
return array
}
return array.filter(thread => {
return thread.title.includes(search)
})
}
}

最佳答案

管道中的参数声明错误。应该是

transform(array:any[], search):any {

代替

transform(array:any[], [search]):any {

自 beta.16 以来,管道不再传递数组或参数。每个值都作为一个独特的参数传递 https://github.com/angular/angular/blob/master/CHANGELOG.md#200-beta16-2016-04-26

Plunker example

关于text - angular2 rxjs 过滤线程与输入文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36968048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com