我尝试整合CAMetalDrawable
以使我的列表可排序。
的客户机/ helpers.js
rubaxa:sortable
服务器/ publications.js
Template.getElements.helpers({
children: function() {
return Articles.find({ parent: this._id }, {sort: {order: 1}});
}
});
模板
Meteor.publish('articles', function() { return Articles.find({}, {sort: {slug: 1}}); });
Sortable.collections = 'articles';
在文档(https://atmospherejs.com/rubaxa/sortable)中,我看到了信息:
<template name="getElements">
<ul class="sortable">
{{#each children}}
{{#sortable items=Articles sortField="order"}}
<li data-id="{{_id}}"><input type="text" name="keyword" value="{{title}}"></li>
{{/sortable}}
{{/each}}
</ul>
</template>
那么我做错了什么?现在没有显示列表元素。