私はこのようなコレクションを持っている:流星ブレイズの表示アレイ
私は例えば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>
しかし、それは仕事をdoesntの、テンプレートを使用して何が間違っている
私はヘルパーがありますか?
したがって、このような何か: {{#with theGame}} {{ #eachのtheGame.questions}} {{ #eachのquestions.teema}} {{ ティーマ}} {{/それぞれ}} {{/ each}} {{/ with}} これはどちらでも動作しないようです。 – Villemh
仮のコードで編集された答え。最初になぜそれらの2レベルアレイが必要かを確認してください。 – ghybs
これは良い提案でしたが、2レベルの配列は必要ありませんでした。ありがとうございました。 – Villemh