Có thể là người trợ giúp thu thập .
Cách sử dụng cơ bản:
Boards.helpers({
creator: function () {
return Meteor.users.findOne(this.creatorId);
},
category: function () {
return Categories.findOne(this.categoryId);
}
});
Cách sử dụng trong mẫu khá đơn giản. Giả sử bạn có bảng của mình:
{{#each boards}}
<div>
<h3>{{board_name}}</h3>
<p>Created by</p>: {{ creator.username }}
<p>Category</p>: {{ category.catname }}
</div>
{{/each}}
Mẹo đã thêm:sử dụng xuất bản-tổng hợp để xuất bản các mối quan hệ theo cách dễ quản lý hơn.
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);
}
}]
}
});