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