我有这个流星集合。我能够在页面上显示问题,但我不知道如何单独显示数组'ansChoices',以便我可以为数组中的每个项目添加一个单选按钮。
//我在mongodb的表
pollQuestion {“问题”:“这很有趣吗?”,“ansChoices”:[“是”,“否” ],“_ id”:“4rfqgkbZWPRjqkgAR”}
// poll.js
Template.pollQn.view = function(){
return pollQuestion.find({});
};
// poll.html
<template name="pollQn">
{{#each view}}
<div class="text-inverse"><b>{{question}}</b></div>
{{#each ansChoices}}
<div class="text-inverse">//what should i put here to display
individual item in the ansChoices array</div>
{{/each}}
{{/each}} </template>
提前致谢!
答案 0 :(得分:1)
由于您的上下文是字符串,因此您应该使用上下文本身:{{this}}