2017-11-03 12 views
0

현재이 가이드를 사용하여 날씨를 쉽게 검색 할 수 있습니다.쉬운 검색을 사용하여 유성에서 검색 오류 : 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, 나는 유성 새로운, 그래서 어떤 도움이 될 것입니다 고맙습니다. 내가 뭔가 잘못하고 있다면 제발 도와주세요.

답변

0

MinimongoEngine 대신 codeMongoDBEngine이 사용됩니다.

패키지 출처를 보면 MinimongoEngineMongoDBEngine이 모두 내보내 져있는 것 같습니다. 클라이언트에서 MinimongoEngine을, 서버 컨텍스트에서 MongoDBEngine을 원할 수 있습니까? 해당 유형 오류가 서버 콘솔 또는 브라우저 콘솔에 표시됩니까?