我想做这样的事情:
<template name="list">
<ul>
{{#if items}}
{{#each items}}
<li>{{itemContents}}</li>
{{/each}}
{{else}}
<li class="placeholder">There are no items in this list.</li>
{{/if}}
<ul>
</template>
items
Meteor.cursor在哪里:
Template.list.items = function() {
return Items.find();
};
但是,上面的代码不起作用,因为即使没有项目,条件也会积极评估(这有点令人惊讶,因为 Handlebars 评估[]
为假)。我尝试将条件更改为
{{#if items.count}}
但后来我得到了神秘的错误
Unknown helper 'items'
那么,有没有办法在流星把手模板中编写这样的条件?