meteor easy search
1.0.0
Easy Search ist eine einfache und flexible Lösung zum Hinzufügen von Suchfunktionen zu Ihrer Meteor-App. Verwenden Sie zum Einstieg die Blaze Components + 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 >
Schauen Sie sich das durchsuchbare Bestenlisten-Beispiel an oder schauen Sie sich die aktuelle Dokumentation (v1-Dokumente) an, um weitere Informationen zu erhalten.
cd /path/to/project
meteor add easy:search