undefined 不是一个函数(评估 '_reactNativeMeteor2.default.collection("messages").find().fetch()')

undefined is not a function (evaluating '_reactNativeMeteor2.default.collection("messages").find().fetch()')

在我的 Meteor 应用程序中,我有一个这样的集合定义:

this.collections.Messages = new Mongo.Collection("messages");

现在我尝试从 react native meteor 连接到它,如下所示:

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);

但它是 return 设备上的红色错误消息下方:

undefined is not a function (evaluating '_reactNativeMeteor2.default.collection("messages").find().fetch()')

问题是什么?

尝试从您的消息常量中删除 fetch():

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

fetch 将游标转换为数组,此处可能没有必要。此外,这一行是唯一有双引号的行,但我不确定这是否相关。