현재이 가이드를 사용하여 날씨를 쉽게 검색 할 수 있습니다.쉬운 검색을 사용하여 유성에서 검색 오류 : MinimongoEngine
http://matteodem.github.io/meteor-easy-search/
는이 같은 오류가 발생 다음
패키지가 설치 :
matteodem:easy-search
easy:search
easysearch:components
easysearch:core
클라이언트/정보 검색
TypeError: MinimongoEngine is not a constructor
이 내가 검색을 구현하고 어떻게 .html
<template name="searchBox">
{{> EasySearch.Input index=playersIndex }}
<ul>
{{#EasySearch.Each index=playersIndex }}
<li>Name of the player: {{name}}</li>
{{/EasySearch.Each}}
</ul>
</template>
클라이언트/searchBox.js
// On Client
Template.searchBox.helpers({
playersIndex:() => PlayersIndex,
})
lib 디렉토리는/
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()
})
를 해결하는 방법에 대한 몇 가지 아이디어를 collection.js, 나는 유성 새로운, 그래서 어떤 도움이 될 것입니다 고맙습니다. 내가 뭔가 잘못하고 있다면 제발 도와주세요.