meteor easy search
1.0.0
Pencarian Mudah adalah solusi sederhana dan fleksibel untuk menambahkan fungsi pencarian ke Aplikasi Meteor Anda. Gunakan Blaze Components + Javascript API untuk memulai.
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 >
Lihat contoh papan peringkat yang dapat dicari atau lihat dokumentasi saat ini (dokumen v1) untuk informasi lebih lanjut.
cd /path/to/project
meteor add easy:search