1

下面是我的收藏代码

Competitions = new Mongo.Collection("competitions");

var CompetitionsSchema = new SimpleSchema({
  year: {
      type: String
  },
  division: {
      type : String,
      allowedValues: ['Elite', '1st','2nd','3rd','4th','Intro']
  },
  teams:{
      type : [TeamSchema],
      allowedValues: (function () {
         return Teams.find().fetch().map(function (doc) {
            return doc.name;
        });
      }()) //here we wrap the function as expression and invoke it
  }
}); 

在 allowedValues 函数中

Teams.find 为空。

在路由器中,我订阅出版物如下

 this.route('competitions', {
    path: '/admin/competitions',
    layoutTemplate: 'adminLayout',
    waitOn: function () {
        return [
            Meteor.subscribe('teams')
        ];
    }
});

这是我的发布功能

Meteor.publish('teams', function() {
  return  Teams.find({},{sort: {
    points: -1,
    netRunRate : -1
  }});
});

我还必须在其他地方订阅吗?

4

1 回答 1

1

您的问题出在这段代码中:

  allowedValues: (function () {
     return Teams.find().fetch().map(function (doc) {
        return doc.name;
    });
  }()) //here we wrap the function as expression and invoke it

这在页面加载时被调用。那时,Teams客户端的集合仍然是空的。您需要等到数据准备好。由于您waitOn在 Iron-router 中使用,因此只需将此代码移至onRendered回调即可。

于 2015-11-02T19:55:34.830 回答