gpt4 book ai didi

javascript - 如何在 typeahead Angular 4 中使用 limitTo?

转载 作者:太空狗 更新时间:2023-10-29 18:05:43 26 4
gpt4 key购买 nike

<分区>

在 Angular 4 中如何将预输入结果的数量限制为 5 或其他?我在这里附上了官方的 plunker 链接。我无法使用 |limitTo

http://embed.plnkr.co/gV6kMSRlogjBKnh3JHU3/

这是模板

<section class="col-sm-12">
<div class="search-results style-3">
<input type="text" [value]="query"
ngxTypeahead
[taUrl]="url"
[taParams]="params"
(taSelected)="handleResultSelected($event)"
>
</div>
</section>

这是ts文件

export class AppComponent {

title = 'This is Angular TypeAhead v' + systemConfig.map['ngx-typeahead'].split('@')[1].split('/')[0];

public url = 'http://suggestqueries.google.com/complete/search';
public params = {
hl: 'en',
ds: 'yt',
xhr: 't',
client: 'youtube'
};
public query = '';

handleResultSelected (result) {
this.query = result;
}

generateWord() {
return chance.word();
}
}

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