meteor easy search
1.0.0
يعد Easy Search حلاً بسيطًا ومرنًا لإضافة وظيفة البحث إلى تطبيق Meteor الخاص بك. استخدم 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 >
تحقق من مثال لوحة المتصدرين القابلة للبحث أو قم بإلقاء نظرة على الوثائق الحالية (مستندات الإصدار 1) لمزيد من المعلومات.
cd /path/to/project
meteor add easy:search