meteor easy search
1.0.0
Easy Search は、Meteor アプリに検索機能を追加するためのシンプルで柔軟なソリューションです。まずは Blaze コンポーネント + JavaScript API を使用してください。
import { Index , MinimongoEngine } from 'meteor/easy:search'
// On Client and Server
const Players = new Mongo . Collection ( 'players' )
const PlayersIndex = new Index ( {
collection : Players ,
fields : [ 'name' ] ,
engine : new MinimongoEngine ( ) ,
} )
// On Client
Template . searchBox . helpers ( {
playersIndex : ( ) => PlayersIndex ,
} ) ;
< template name =" searchBox " >
{{ > EasySearch.Input index=playersIndex }}
< ul >
{{#EasySearch.Each index=playersIndex }}
< li > Name of the player: {{name}} </ li >
{{/EasySearch.Each}}
</ ul >
</ template >
詳細については、検索可能なリーダーボードの例を確認するか、現在のドキュメント (v1 ドキュメント) を参照してください。
cd /path/to/project
meteor add easy:search