我有集合是這樣的:流星火焰顯示陣列
欲遍歷例如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>
但它不工作,什麼是錯的模板?
因此,像這樣: {{#with theGame}} {{#each theGame.questions}} {{#each questions.teema}} {{TEEMA}} {{/每個}} {{/每個}} {{帶}} 這似乎並不工作 – Villemh
沒有。用暫定代碼編輯答案。首先檢查你爲什麼需要這些2級陣列... – ghybs
這是個好建議,我不需要2級陣列。謝謝。 – Villemh