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