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

befolke i mongodb med meteor

Sandsynligvis indsamlingshjælpere .

Grundlæggende brug:

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

Brugen i skabelonen er ret enkel. Lad os sige, at du har dit bord:

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

Tilføjet tip:brug publish-composite at offentliggøre relationerne på en mere overskuelig måde.

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



  1. NodeJS Express Dependency Injection og Database Connections

  2. Brug af pymongo's ReplicaSetConnection:får nogle gange IndexError:intet sådant element for markør

  3. Gem GeoJSON-polygoner i MongoDB

  4. MongoDB - Begræns resultaterne af en forespørgsel