0

在 Meteor React 应用程序中使用 Mongo 集合时,返回一个空数组 []。我使用的是Github 的“react-meteor-template”

我宣布

Posts = new Mongo.Collection("posts");

在 Collection.js 文件中。

以下是我获取空数组 [] 数据的地方

ReadPost = React.createClass({
    mixins: [ReactMeteorData],
    getMeteorData() {
        return {
            postsLoading: Posts.find().fetch()
        }
    },
    render() {
        let { postsLoading } = this.data;
        console.log(postsLoading);
       return (
               <div className="container">
                   {
                       postsLoading.map((post) => {
                           return (
                               <div key={post._id} className="col-sm-6 col-sm-offset-3" style={{'marginBottom':"30px", padding: "20px", background: "#FFBABA"}}>
                               <p>Reading post {this.props.postName}</p>
                               <h1 style={{display: "inline"}}>{post.title}</h1>
                               </div>
                           )
                       })
                   }

               </div>
       )
    }
});
4

1 回答 1

0

虽然我们倾向于使用 blaze/iron:router 的路由/模板订阅,但我们通常订阅 Blaze 中的组件。

例如,这是我们在一个项目中使用的一段代码:

getMeteorData() {
        let subscription = Meteor.subscribe('usersList', this.state.limit);
        return {
            subscription: subscription.ready(),
            users: Meteor.users.find({}, {sort: {createdAt: -1}}).fetch()
        };
}

您现在可以检查订阅准备情况,render()并且数据通常应该正在加载。请注意,如果您愿意,您仍然可以从 flow-router 订阅。

于 2016-02-16T08:42:42.217 回答