我有一个持有“问题”对象Mongo.Collection。 每一个“问题”有一个属性叫做choices
Questions.insert({
text: 'What is the capitol of the US?',
choices: [
"Washington D.C.",
"Houston",
"New York City",
"Los Angeles"
],
correctChoice: 0,
date: new Date().toDateString()
});
在我的模板我有这样的:
<div class="question">
<div class="question-content">
<p>{{text}}</p>
<ul>
{{#each choices}}
//?????????
{{/each}}
</ul>
</div>
</div>
我应该怎么放,而不是问号,以便于需要包含适当的选择列表项的无序列表?
谢谢您的阅读。 很抱歉,如果这是很容易。 我还在流星一个小白的一点点。 =)