MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

popola in mongodb con meteor

Probabilmente aiutanti di raccolta .

Utilizzo di base:

Boards.helpers({
  creator: function () {
    return Meteor.users.findOne(this.creatorId);
  },
  category: function () {
    return Categories.findOne(this.categoryId);
  }
});

L'utilizzo nel modello è piuttosto semplice. Diciamo che hai la tua tavola:

{{#each boards}}
  <div>
    <h3>{{board_name}}</h3>
    <p>Created by</p>: {{ creator.username }}
    <p>Category</p>: {{ category.catname }}
  </div>
{{/each}}

Suggerimento aggiunto:usa publish-composite pubblicare le relazioni in modo più gestibile.

Meteor.publishComposite('board', function (boardId) {
  check(boardId, String);
  return {
    find: function () {
      return Boards.find(boardId);
    },
    children: [{
      find: function (board) {
        return Meteor.users.find(board.creatorId);
      }
    }, {
      find: function (board) {
        return Categories.find(board.categoryId);
      }
    }]
  }
});