1

私の 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()')

問題は何ですか?

4

1 に答える 1

1

メッセージ const から fetch() を削除してみてください。

const messages = Meteor.collection('messages').find();

フェッチはカーソルを配列に変換しますが、おそらくここでは必要ありません。また、二重引用符を使用しているのはこの行だけですが、それが関連しているかどうかはわかりません。

于 2016-12-18T22:56:41.493 に答える