私の Meteor アプリには、次のようなコレクション定義があります。
this.collections.Messages = new Mongo.Collection("messages");
今、私は次のような反応するネイティブ流星からそれに接続しようとしています:
import React, { Component } from 'react';
import Meteor, { createContainer } from 'react-native-meteor';
import MessageListComponent from '../routes/messageList';
export default MessageListContainer = createContainer(() => {
const messagesHandle = Meteor.subscribe('userMessage');
const loading = !messagesHandle.ready();
const messages = Meteor.collection("messages").find().fetch();
return {
loading,
messages
};
}, MessageListComponent);
ただし、デバイスの赤いエラー メッセージの下に戻ります。
undefined is not a function (evaluating '_reactNativeMeteor2.default.collection("messages").find().fetch()')
問題は何ですか?