我有一个使用 Polymerfire Firestore mixin 和 dom-repeat 的 Polymer 属性:
mySections: {
type: Array,
collection: '/users/{user.uid}/sections',
query: (q, el) => {
q = q.orderBy('sectionName')
return q;
}
}
<template is="dom-repeat" items="{{mySections}}" as="Section" index-as="SectionIndex">
{{Section.sectionName}}
</template>
但是,它不是按sectionName 排序的吗?我究竟做错了什么?我在这里错过了什么吗?谢谢。