【发布时间】:2016-12-07 20:08:44
【问题描述】:
我有这样的收藏:
例如,我想遍历 object.questions.teema。
我有帮手:
Template.game.helpers({
theGame: function() {
var theGame = Game.findOne({_id:"LhQmaZKW8eJNenyX9"})
console.log(theGame)
return theGame
}
});
和模板:
<template name="game">
{{#with theGame}}
{{#each theGame.questions}}
{{teema}}
{{/each}}
{{/with}}
</template>
但是不行,模板有什么问题?
【问题讨论】:
标签: meteor handlebars.js meteor-blaze