我正在使用流星0.8.2,项目运作顺利。但是在#each循环的循环中存在一个小问题,当循环运行时,它之间需要额外的行。 我的模板:
<template name="entries">
{{#each entries}}
<strong>Name: </strong><i>{{name}}</i><br>
<strong>Address: </strong><i>{{address}}</i><br>
{{/each}}
</template>
我的js代码:
// expose the addressDB collection to the entries template (as 'entries')
Template.entries.entries = function () {
// return all entries sorted by time
return addressDB.find({}, { sort: { time: -1 }});
}
但是,结果如下:
Name: abc
Address:
Name:
Address: Orlando FL United States
和预期的输出是:
Name: abc
Address: Orlando FL United States
为什么循环两次,有关它的任何想法?或者我错过了一些明显的东西?